Git Extras
September 15, 2010
There’s a fantastic tool on Github – Git Extras. Its readme tells you everything you need to know, but just to give you a taste, here are my favourites:
$ git release 0.1.0
Create a commit and tags it.
$ git delete-branch branch_name
Delete local AND remote branch
$ git undo [number]
Undo one or more commits. Internally does git reset --HARD
$ git commits-since [date]
Lists commits since a specified date, or last week
$ git summary
See who created the most commits in your project
Enjoy!
