美文网首页
【工具】git创建并同步仓库

【工具】git创建并同步仓库

作者: giraffecode9668 | 来源:发表于2019-10-17 18:07 被阅读0次

    通过命令行使用git

    1. 创建
    git add remote origin https://github.com/xxx  
    
    git pull
    

    常用操作:

    git add .
    git commit -m "start 2018-06-06"
    git push origin master
    
    1. 出现
      fatal: refusing to merge unrelated histories
    git pull origin master --allow-unrelated-histories
    

    4.创建并切换分支

    git checkout -b xxx
    

    5.查看分支

    git branch
    

    相关文章

      网友评论

          本文标题:【工具】git创建并同步仓库

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