Fork分支与源分支代码同步
作者:互联网
#查看所有远程库(remote repo)的远程url
git remote -v;
#添加源分支url
git remote add upstream 这里替换为源项目url;
#查看所有远程库(remote repo)的远程url
git remote -v;
#从源分支获取最新的代码
git fetch upstream;
#切换到主分支
git checkout master;
#合并本地分支和源分支
git merge upstream/master;
#push到fork分支
git push;
标签:Fork,git,remote,url,upstream,与源,远程,分支 来源: https://www.cnblogs.com/lslong/p/16131956.html