美文网首页
Git 使用

Git 使用

作者: wuffy | 来源:发表于2018-07-25 11:00 被阅读0次

    1 切换远程分支

    先用fetch命令更新remote索引 -> git fetch

    列出远程分支列表 -- git branch -a

    检出分支 git checkout 或者 git checkout -b

    2 推送分支到远程仓库

    git checkout -b feature-branch //创建并切换到分支feature-branch
    //推送本地的feature-branch(冒号前面的)分支到远程origin的feature-branch(冒
    号后面的)分支(没有会自动创建)
    git push origin feature-branch:feature-branch

    相关文章

      网友评论

          本文标题:Git 使用

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