Git怎么推送本地分支到远程新分支上面去
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git怎么推送本地分支到远程新分支上面去相关的知识,希望对你有一定的参考价值。
参考技术A 先使用git remote add 命令添加一个远程库,然后使用git push xxx xxx 将本地分支推上去比如:
git remote add origin "http://192.168.1.1/test.git"
git push origin master:master
Git常用命令收集
1.查看分支
列出所有本地分支$ git branch
列出所有远程分支$ git branch -r
列出所有本地分支和远程分支$ git branch -a
2.本地检出一个新的分支并推送到远程仓库
创建本地分支 git branch 新分支名
创建本地分支并切换至分支 git checkout -b 新分支名
推送本地分支到远程仓库 git push --set-upstream origin 分支名
3.将远程git仓库里的指定分支拉取到本地(本地不存在的分支)
git checkout -b 本地分支名 origin/远程分支名
如果出现提示:
fatal: Cannot update paths and switch to branch ‘dev2‘ at the same time.
Did you intend to checkout ‘origin/dev2‘ which can not be resolved as commit?
表示拉取不成功。我们需要先执行
git fetch
然后再执行
git checkout -b 本地分支名 origin/远程分支名
以上是关于Git怎么推送本地分支到远程新分支上面去的主要内容,如果未能解决你的问题,请参考以下文章