My issue is I have changed a file eg: README, added a new line 'this for my testing line' and saved the file, then I issued the following commands

 git status

 # On branch master
 # Changed but not updated:
 #   (use "git add <file>..." to update what will be committed)
 #   (use "git checkout -- <file>..." to discard changes in working directory)
 #
 #  modified:   README
 #
 no changes added to commit (use "git add" and/or "git commit -a")


 git add README

 git commit -a -m 'To add new line to readme'

I didn't push the code to github, Now I want to cancel this commit.

For this I used

   git reset --hard HEAD~1

But I lost the newly added line 'this for my testing line' from the README file. This should not happen. I need the content to be there. Is there a way to retain the content and cancel my local commit?

link|improve this question

It sounds like you're definitely not asking for git revert, which creates a new commit with the reverse diff of the reverted commit. Resetting simply points your current branch to a different commit, in this case, the one before the commit you want to "forget". – Jefromi Jan 31 '11 at 16:11
feedback

1 Answer

up vote 31 down vote accepted

Just use git reset without the --hard flag:

git reset HEAD^

PS: HEAD^ is equal to HEAD~1

link|improve this answer
Thanks dude.. :) – Amal Kumar S Jan 31 '11 at 12:22
1  
By the way, this is called --mixed in the manual. – Josh Lee Jan 31 '11 at 17:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.