我想查看ID提交。例如,我想知道为该ID提交的代码,例如:
git log <commit_id>
这将显示与此ID对应的已提交代码和提交消息。
答案 0 :(得分:102)
git show <commit_id>
可能是您正在寻找的机器人。
答案 1 :(得分:3)
@SethRobertson的解决方案对我有用,但显示出差异。我想像git log
一样看到它。因此,添加--no-patch
:
git show <commit_id> --no-patch
中学到了这一点