git 设置默认推送和拉去的分支
Posted leleyao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 设置默认推送和拉去的分支相关的知识,希望对你有一定的参考价值。
需要两步操作
git branch --set-upstream-to=origin/yewu yewu git config --global push.default "upstream"
作完这两个步骤,会出现一下问题
[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] url = xxxxxxxxnf.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "yewu"] remote = origin merge = refs/heads/yewu
/userhome/.gitconfig
[push]
default = upstream
该配置为全局配置
以上是关于git 设置默认推送和拉去的分支的主要内容,如果未能解决你的问题,请参考以下文章