标签:帮助 upstream log 操作 更新 strong 信息 origin http
当由多个上游的时候,我们需要合理管理自己的分支的track,进行合作;
拉取上游分支到本地:
git pull <remote> <branch>
git pull <远程主机名> <远程分支名>:<本地分支名>
建立分支track 信息:
git branch --set-upstream-to=<remote>/<branch> wip-readahead
查看分支track信息:
git branch -vv
$ git branch -vv develop 08775f9 [origin/develop] develop feature_1 b41865d [origin/feature_1] feature_1 * master 1399706 [my_github/master] init commit
git 推送本地分支到远程分支:
git push origin 本地分支名称:远程分支名称 , 使用一个,默认本地分支和远程分支相同;
更多操作,可以参考git branch 命令帮助;
参考链接:
https://www.cnblogs.com/mafeng/p/10137244.html
保持更新,更多内容请关注cnblogs.com/xuyaowen;
标签:帮助 upstream log 操作 更新 strong 信息 origin http
原文地址:https://www.cnblogs.com/xuyaowen/p/git-branch-track.html