Last Updated: February 25, 2016
·
1.144K
· gpolguere

Find commits not in the logs

It happened to me last night that I mistype a git command when rebasing :

git rebase --skip    

instead of

git rebase --continue    

There is a git command that shows all your commits :

git reflog    

With this command, you can checkout any commit you might have lost track of in the logs.