Oops!
Wednesday, June 25, 2008 9:37:24 PM
I made a mistake in my last commit and I figured that out too late. Well, not late enough, because thanks to git I was able to amend my last commit with whatever new changes I wanted and git's commit history appeared as if the mistake was never there.
Here is how it works.
You commit and then you figure out you made a mistake, maybe a mispelled word in your commit message or even a programming error, whatever. So you change whatever you want, add the relevant stuff to your index with "git add" and then
$ git commit --amend
which opens your editor with the message of your last commit pre-loaded, which you can edit if you need and then save it. That's it. Your new changes will appear as if they were always there on that last commit, no new commits in your history with the fixes of your mistakes.
I LOVE GIT!!!














Fatimahzenya # Wednesday, June 25, 2008 11:09:22 PM
Unregistered user # Saturday, March 27, 2010 11:52:27 PM