用命令行,流程如下:
先判断是否建立了主repo的远程源:
1 | git remote -v |
如果里面只能看到你自己的两个源(fetch 和 push)。
1 | origin url(fetch) |
那就需要添加主repo的源:
1 | git remote add upstream URL |
然后你就能看到upstream了。
1 | origin url(fetch) |
如果想与主repo合并:
1 | git fetch upstream |
用命令行,流程如下:
先判断是否建立了主repo的远程源:
1 | git remote -v |
如果里面只能看到你自己的两个源(fetch 和 push)。
1 | origin url(fetch) |
那就需要添加主repo的源:
1 | git remote add upstream URL |
然后你就能看到upstream了。
1 | origin url(fetch) |
如果想与主repo合并:
1 | git fetch upstream |