网页上好像没找到操作的按钮...
1
ijse 2015-01-10 20:33:02 +08:00
我只知道在本地操作:
git remote add originalRepo original-repo-git-url git pull originalRepo master git push myRepo master |
2
laobubu 2015-01-10 20:39:22 +08:00 1
貌似是这个 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
huoshanhui 2015-01-10 20:44:03 +08:00
只能从本地进行拉取。
|
4
zhicheng 2015-01-10 20:44:10 +08:00
LS 给出的添加一个新的 remote 是比较好的办法,还有另一个更简单一些的,就是发一个 Pull Request 给自己。
|
6
Mrun 2015-01-10 20:56:26 +08:00
|
7
xp0729 2015-01-10 21:03:38 +08:00
每次提交代码前都会fetch and merge,除了会让提交看起来比较乱以外暂时没什么缺点
|
10
tonynothing 2015-01-10 21:20:57 +08:00
@otmb 像Sourcetree和Tower这样的Git客户端都是可以添加Remote的,官方的用的不多不知道。
|
11
yfdyh000 2015-01-10 21:26:21 +08:00
|
12
Rocko 2015-01-10 22:23:48 +08:00
|
13
pezy 2015-01-10 22:31:18 +08:00
|
14
airyland 2015-01-11 10:34:05 +08:00 1
一直是PR
|