美文网首页
git 创建本地分支并且关联到远程

git 创建本地分支并且关联到远程

作者: ClementGu | 来源:发表于2019-10-24 20:46 被阅读0次

    1.创建本地分支

    git checkout -b origin/feature/BranchName/YourBranchName

    2.关联到远程

    git push --set-upstream remotePath/remotename (跟本地一样)

    远程路径不需要写origin 直接写路径 需要另外命名的画就在后面加冒号加新名字

    git push --set-upstream remotePath/localName:newRemotename

    相关文章

      网友评论

          本文标题:git 创建本地分支并且关联到远程

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