在我的分叉存储库中,额外的远程分支到原始仓库的目的是什么?

时间:2016-10-18 15:03:28

标签: git github

我最近将repo ZoomerAnalytics / xlwings.git分叉并克隆到我的桌面。然后我设置我的上游分支指向这个回购。

然而,当我输入git remote -v时,我在那里看到了额外的存储库(ZoomerAnalytics)。这个分支是什么?它似乎不是一个普通的分支,我担心删除它。但是,它也不像上游遥控器那样。以下是输出

$ git remote -v
ZoomerAnalytics https://github.com/ZoomerAnalytics/xlwings.git (fetch)
ZoomerAnalytics https://github.com/ZoomerAnalytics/xlwings.git (push)
origin  https://github.com/Eupraxis/xlwings.git (fetch)
origin  https://github.com/Eupraxis/xlwings.git (push)
upstream        https://github.com/ZoomerAnalytics/xlwings.git (fetch)
upstream        https://github.com/ZoomerAnalytics/xlwings.git (push)

以下遥控器有哪些?

ZoomerAnalytics https://github.com/ZoomerAnalytics/xlwings.git (fetch)
ZoomerAnalytics https://github.com/ZoomerAnalytics/xlwings.git (push)

1 个答案:

答案 0 :(得分:0)

@torek的评论显示,ZoomerAnalytics遥控器确实在GitHub帮助说明中扮演“上游”的角色。它的惯例是将原始仓库命名为“上游”。