I am trying to view all the commits I have ever made. I am on one branch.
i've tried git log --since=2.weeks
but that hasn't worked like the docs say it should. A bit confused.
I am trying to view all the commits I have ever made. I am on one branch.
i've tried git log --since=2.weeks
but that hasn't worked like the docs say it should. A bit confused.
Try this:
git log --oneline //See all the commit
and
git log --oneline -n <how many line commit you see>
for example :
git log --oneline -n 5
there's a flag to list all commits: https://git-scm.com/docs/git-log#git-log---all
git log --all
you probably want to use together with --oneline
flag