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,我遇到了问题。
在 SVN 中,我可以svn log HEAD:100用来获取 HEAD 修订版和第 100 个修订版之间的日志消息。
svn log HEAD:100
Git中是否有类似的东西,以便我可以获得特定范围的日志消息?
你有不止一种方法可以做到这一点。请阅读 gitrevisions 的手册页 (7)。
man 7 gitrevisions
对于上面的示例,您可以使用以下命令:
git log HEAD~100..HEAD
如果您需要两个修订之间的所有提交,您需要在两个修订之间三个点。
git log Rev1...Rev2