Git怎么推送本地分支到远程新分支上面去
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git怎么推送本地分支到远程新分支上面去相关的知识,希望对你有一定的参考价值。
gitpush
origin
local_branch:remote_branch
这个操作,local_branch必须为你本地存在的分支,remote_branch为远程分支,如果remote_branch不存在则会自动创建分支。
类似,git
push
origin
:remote_branch,local_branch留空的话则是删除远程remote_branch分支。 参考技术A 命令:
git
push
origin
local_branch:remote_branch
origin是你的远程仓库的链接名称(默认的叫origin,
使用git
remote
add
添加)
local_branch是本地分支,
后面跟上一个
冒号
,
接上对应的远程分支remote_branch
通常这两个分支名是一样的
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怎么推送本地分支到远程新分支上面去的主要内容,如果未能解决你的问题,请参考以下文章