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.
假设我有一个回购名称core。core是上游存储库。然后我有fork,这是core永远不会被推送到的 + 提交core。保持fork最新提交的正确方法是什么core?
core
fork
现在,从fork,我只是这样做git pull core master。这行得通,但是发生的是它包括以前的提交,所以当我查看我的 github 日志时,我看到很多提交的重复。
git pull core master
这是正确的方法吗?有没有更好的办法?
它包括以前的提交,所以当我查看我的 github 日志时,我看到很多提交的重复。
这不应该发生。如果你想维护你的分叉,你可以使用
或者您可以 重新调整更改
git pull --rebase core master
或者您可以维护一个 主题分支。