我正在尝试查看我所做的所有提交。我在一个分支上。
我已经尝试git log --since=2.weeks
,但这并不像文档所说的那样有效。有点困惑。
答案 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)