til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

Rewrite the last commit message

I often fat-finger or misspell stuff in commit messages, luckily Git lets you correct these things without too much hassle.

If you have just made the commit locally and have not yet pushed

$ git commit --amend

If you have pushed to your remote

$ git commit --amend
git push --force

References