美文网首页
Git 从入门-放弃之路

Git 从入门-放弃之路

作者: 剧情简介第一天 | 来源:发表于2016-10-25 19:54 被阅读0次

    向Git提交代码
    1.ssh协议- 安装ssh
    linux及mac默认安装好了,win下需自行安装
    在shell中键入: ssh-keygen -r rsa 连续按三个enter
    生成两个文件
    在目录~./ssh下找到 id_rsa.pub 用sublime text打开

    2.git push pull
    push:推
    pull:拉

    git pull origin master
    git pull origin master

    首先需要git add files-> git commit -m '注释' git push origin master ->git pull origin master->
    git remote add origin 地址

    进阶之路:
    git alias:
    1.git log图形化界面:
    git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative

    git config --global alias.lg "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative"

    git config --global alias.psm 'push origin master'
    git config --global alias.plm 'pull origin master'

    相关文章

      网友评论

          本文标题:Git 从入门-放弃之路

          本文链接:https://www.haomeiwen.com/subject/jfwruttx.html