主人的形式是
http://github.company.com/ourorg/ourproject.git
我FORK
通过单击 Fork 按钮从中创建了一个,我的 FORK 如下所示:
http://github.company.com/My_User_Name/ourproject.git
现在我的目标和问题是如何让我的 REMOTE FORK 与我分叉的 REMOTE MASTER 保持同步?但我不想将远程分叉同步到远程主控,我只想将远程主控与我的远程分叉同步
如果我运行一个git remote -v
命令,这就是我目前所拥有的:
origin http://github.company.com/My_User_Name/ourpeoject.git (fetch)
origin http://github.company.com/My_User_Name/ourpeoject.git (push)
upstream http://github.company.com/ourorg/ourpeoject.git (fetch)
upstream http://github.company.com/ourorg/ourpeoject.git (push)