关联起来后,可以直接切换到本地分支并执行pull命令
1.command
git config --add branch.localBranch.remote origin
git config --add branch.localBranch.merge refs/heads/remoteBranch
2.直接修改git 配置文件
.git/config
[branch "master"]
remote = origin
merge = refs/heads/master
本文共 314 字,大约阅读时间需要 1 分钟。
关联起来后,可以直接切换到本地分支并执行pull命令
1.command
git config --add branch.localBranch.remote origin
git config --add branch.localBranch.merge refs/heads/remoteBranch
2.直接修改git 配置文件
.git/config
[branch "master"]
remote = origin
merge = refs/heads/master
转载于:https://www.cnblogs.com/lovemo1314/archive/2013/01/08/2850764.html