Last Updated: February 25, 2016
·
350
· wordofchristian

Only 'my' git commits

Add this to your git config:

[alias]
    mine = log --all --oneline --author '<YOUR NAME>'

The quotes around the author are important.

Now git mine shows the git commits you've written across all branches. Great for daily stand-ups.

You can also add a date filter.

git mine --before={3.weeks.ago} 
git mine --after={2010-04-18}