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.
可能是一个基本问题。我已经在分支中挑选了一些提交。现在我想获得一个从分支 A 提交到分支 B 的提交列表。有没有办法做到这一点?
尝试这个:
git log --oneline --cherry A...B
这列出了 B 中但不在 A 中的所有提交,并将在 A 中具有等效提交的提交标记为=
=