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 log”中使用某些选项?
假设您在分支上,master这将显示从当前签出的修订版到分支尖端的提交:
master
git log ..master
要包括当前结帐的修订版,请使用:
git log HEAD^..master