我希望在创建时看到变更集的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,而不仅仅是我感兴趣的一个。
有没有办法简洁地做到这一点?
答案 0 :(得分:1)
尝试git show 123354
是您要找的内容吗?