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.
假设我有一个孤立的提交并想要恢复它。到目前为止,我一直是这样的:
git checkout -b newBranch
我总是为此创建一个新分支。有没有办法将它添加到现有分支(并避免创建这个一次性的)。
如果不是,为什么不呢?
如果您知道提交哈希,而不是:
git checkout -b new-branch 123abc
您可以使用:
git checkout existing-branch git cherry-pick 123abc
可以通过查看来检索提交哈希git log。
git log