Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Git on Windows.

After numerous local changes and committing them locally I performed a Git pull from our remote repository. I found that after doing this and having a few conflicts, large amounts of code that existed locally are now gone without any backup files created on disk (ie .LOCAL).

Is there a way to revert my state back to my local state before I did a remote pull?

Thanks

share|improve this question
What is the output of gif wtf ? – karlphillip Dec 9 '10 at 16:38
A little bit more detail would help quite a bit here. – MatrixFrog Dec 9 '10 at 16:46
You shouldn't expect backup files; the old content (assuming it was committed) is in the repository. That's what it's for. – Jefromi Dec 9 '10 at 17:30
It's actually quite unclear what you're trying to do here. Assuming those "large amounts of code" were committed... Do you want to reset to the commit before the merge? Restore the contents of only certain files from and recommit them? or restore them and ignore them? – Jefromi Dec 9 '10 at 17:32
@Jefromi - I was trying to reset to the commit before the merge. – leaf dev Dec 9 '10 at 18:24

1 Answer

up vote 0 down vote accepted

For retrieving the entire branch:

git reset --hard HEAD

or for individual files:

git checkout HEAD^ -- file1 file2 file3
share|improve this answer
Assuming that git log shows the history of your commits. – karlphillip Dec 9 '10 at 16:36
More likely some previous commit is what the OP wants, perhaps HEAD^. – Jefromi Dec 9 '10 at 17:28
@leaf Updated answer. I encourage you to take a look at: book.git-scm.com/… – karlphillip Dec 9 '10 at 17:56
Thanks, with your reference and answer I was able to get it restored. – leaf dev Dec 9 '10 at 18:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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