你能在指定的提交之前和之后记录一些提交吗?

时间:2015-10-29 15:20:51

标签: git git-log

Git log -2 {hash}会在提供的哈希之后将输出限制为2次提交。有没有办法看到之前出现的2次提交?

1 个答案:

答案 0 :(得分:1)

我用

git log --pretty=oneline --reverse --ancestory-path {sha}^..master | head -n

其中n是您想要的提交次数。