git

作者: 贞贞姐 | 来源:发表于2019-05-08 16:38 被阅读0次

    1.git checkout 分支名(如 feature/mybranch) (切换到指定开发分支)
    2.git pull (拉取代码)
    3.git add . (暂存需要提交的文件)
    4.git commit -m '备注' (提交已暂存的文件)
    5.git push (同步到服务器)

    安装完成后,还需要最后一步设置,在命令行输入:

    git config --global user.name "Your Name"
    git config --global user.email "email@example.com"

    在gitlab上面生成证书:
    ssh-keygen -t rsa
    2:cd ~/.ssh
    3:cat id_rsa.pub

    image.png

    在/c/Users/Administrator/.ssh/id_rsa.pub,复制里面的到gitlab的SSHKeys

    在gitlab 那里的setting点进去SSH Keys


    image.png

    在苹果电脑上


    image.png

    相关文章

      网友评论

          本文标题:git

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