git 新建一个branch

  • git,branch,
  • 2014-08-01 12:56:59

使用git新建一个branch。


切换到你要从哪个branch上迁出一个新的branch。也就是你要基于哪个branch上新建branch。

git branch branch_name

使用 git branch 命令,就能看见这个新的branch。这个时候在本地已经创建了。现在要放到服务器上。

然后切换到那个新的branch上。(也可能不用,我不是很确定)

git push origin branch_name:branch_name

这样,在服务器上就有了这个branch 。 通过git branch -r 查看服务器端的branch列表。

在使用git pull 的时候,可能会出现

You asked me to pull without telling me which branch you
want to merge with, and 'branch.XXX.merge' in
your configuration file does not tell me, either. Please
specify which branch you want to use on the command line and
try again (e.g. 'git pull <repository> <refspec>').
See git-pull(1) for details.

If you often merge with the same branch, you may want to
use something like the following in your configuration file:

    [branch "XXX"]
    remote = <nickname>
    merge = <remote-ref>

    [remote "<nickname>"]
    url = <url>
    fetch = <refspec>

See git-config(1) for details.

这个时候你需要配置一下参数。

使用git config -e 进入config的编辑状态,按照格式新增加一个配置。

[branch "XXX"]
        remote = origin
        merge = refs/heads/XXX

然后保存,再次git pull , 应该成功了。不成功的话,google吧,^_^俺也不懂了。

或者使用命令行增加config

git config branch.XXX.remote origin 
git config branch.XXX.merge refs/heads/XXX



相关文章

- EOF -

本站文章除注明转载外,均为本站原创或编译。欢迎任何形式的转载,但请务必注明出处,尊重他人劳动。
转载请注明:文章转载自 Binkery 技术博客 [https://binkery.com]
本文标题: git 新建一个branch
本文地址: https://binkery.com/archives/218.html