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.
我怎样才能拉出一个特定的提交,或者更确切地说,在一个特定的提交之后拉出 repo?我没有任何分支。我只是在运行 master,而且我是唯一一个使用这个 repo 的人。
您可以拉然后签出您想要查看的提交:
git pull && git co <commit>
或者您可以拉动然后将 HEAD 重置为不同的提交:
git pull && git reset --hard <commit>
我认为没有办法只提取特定的提交,因为如果需要,git 很容易切换到另一个提交。