git.rinkkasatiainen.fi

Github pages - my own learning diary


View My GitHub Profile

Fixing Commits

I accidentally

…added a commit to staging area? What to do?

$ git log --oneline
dc7aad8 Some Fancy commit message
1ca95df Some Fancy commit message

git reset to rescue!

$ git reset --hard HEAD^
HEAD is now at 1ca95df Some Fancy commit message
$ git log -1 --oneline
1ca95df Some Fancy commit message

committed wrong files to temp

I had done this

git add -- <file> <anotherfile>
...
git commit -am "message"

So, unintended -a options.

Fix with git reset –soft

git reset --soft HEAD^
git reset HEAD -- <file-that-should-not-be-commited>
git commit -c ORIG_HEAD