Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的存储库的hgrc文件中,我有两个路径,一个default是upstream. 它们是相同的。
default
upstream
我需要输入upstream吗?如果需要,为什么?我不知道为什么我有那个upstream。
[paths] default = https://myUrl upstream = https://myUrl
这只是另一个保存的远程存储库。
您可以为这些命名任何您想要的名称,“默认”名称很有用,因为您不必提及从哪里推送或拉取,但您可以命名这些远程存储库,“上游”就是这样一个名称。
如果“upstream”的 url 与“default”的 url 相同,那么您很可能不需要它,除非您有依赖于能够发出hg pull upstream或类似的脚本或程序。
hg pull upstream