0

我想在创建变更集时查看它的 git 日志。说我有

$ git log --oneline
123456 most recent stuff
243456 slightly older
153456 a while ago
123354 jeez I forgot about this
888234 is this even the same project?
123999 initial commit

我想记住“天哪,我忘了这个”提交做了什么。我相信我能做到

$ git diff 888234..123354

看到变化。这真的是唯一的方法吗?它看起来很笨重,因为它迫使我查找两个 SHA,而不仅仅是我感兴趣的一个。

有没有办法简洁地做到这一点?

4

1 回答 1

1

试试git show 123354这就是你要找的吗?

于 2012-04-27T19:02:32.477 回答