通过提交SHA-1键仅显示一个历史记录

时间:2014-08-15 14:31:48

标签: git

我在git Bash中有命令:

git log -2它给了我结果:

enter image description here

但现在我只想显示提交,其中数字等于== "ca82a6dff817ec66f44342007202690a93763949"(第一次提交)

什么命令?

2 个答案:

答案 0 :(得分:1)

git show将显示最后一次提交,git show <commit_id>将显示特定提交。

答案 1 :(得分:1)

你可以使用git show:

git show commit_id

或者如果你想使用log:

git log -1 -U commit_id