网页上好像没找到操作的按钮...
1
ijse Jan 10, 2015
我只知道在本地操作:
git remote add originalRepo original-repo-git-url git pull originalRepo master git push myRepo master |
2
laobubu Jan 10, 2015 貌似是这个 https://help.github.com/articles/syncing-a-fork/
大意就是在本地使用类似 `git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git` 的方式添加原repo, 然后 fetch upstream ,然后 merge upstream/master 到自己的 master 就可以了 |
3
buydip Jan 10, 2015
只能从本地进行拉取。
|
4
zhicheng Jan 10, 2015
LS 给出的添加一个新的 remote 是比较好的办法,还有另一个更简单一些的,就是发一个 Pull Request 给自己。
|
7
xp0729 Jan 10, 2015
每次提交代码前都会fetch and merge,除了会让提交看起来比较乱以外暂时没什么缺点
|
10
tonynothing Jan 10, 2015
@otmb 像Sourcetree和Tower这样的Git客户端都是可以添加Remote的,官方的用的不多不知道。
|
11
yfdyh000 Jan 10, 2015
|
12
Rocko Jan 10, 2015
|
13
pezy Jan 10, 2015
|
14
airyland Jan 11, 2015 一直是PR
|