对于git如何查看回购中的所有提交?

时间:2016-12-09 04:06:33

标签: git

我正在尝试查看我所做的所有提交。我在一个分支上。

我已经尝试git log --since=2.weeks,但这并不像文档所说的那样有效。有点困惑。

2 个答案:

答案 0 :(得分:0)

试试这个:

git log --oneline //See all the commit

git log --oneline -n <how many line commit you see>

for example :
      git log --oneline -n 5

答案 1 :(得分:0)

列出所有提交的标志:https://git-scm.com/docs/git-log#git-log---all

git log --all

您可能希望与--oneline标志一起使用