Hey I'm new to git and I need to undo a pull, can anyone help?!? So what I've done is...

  1. git commit
  2. git stash
  3. git pull --rebase
  4. git stash pop

this created a bunch of conflicts and went a bit wrong. Now doing 'git stash list' reveals that my stash is still there. Is it possible to revert my repo back to the point just after doing git commit. So effectively my repo only contains only changes I have made and nothing new from the server?

Thanks in advance!

Tom

link|improve this question

67% accept rate
feedback

4 Answers

up vote 10 down vote accepted

using git reflog you will see a list of commits HEAD pointed to in the past

using

git checkout -b after-commit HEAD@{1} # or the commit you want to recover

you create a new branch at that precise position and check it out

link|improve this answer
doing this throws an error informing me that a file will be overwritten by merge. Is there a way to ignore this? – Thomas Feb 6 '10 at 14:21
1  
Make sure your working directory is clean (git reset --hard HEAD will do that). Also, make sure the rebase is no longer in progress (git rebase --abort). – Wayne Conrad Feb 6 '10 at 14:22
You my friend are a life saver! Thank you :) – Thomas Feb 6 '10 at 14:46
6  
Been there, done that! I think I've made every goof you can make with git. Git is a saw with no guard that makes it easy to cut your own arm off. But it also comes with an easy arm reattachment kit, and you can even attach the arm to your knee if you want. – Wayne Conrad Feb 6 '10 at 14:58
@wayne great metaphor :D – knittl Feb 6 '10 at 16:45
show 2 more comments
feedback

Actually, to make this easier Git keeps a reference named ORIG_HEAD that points where you were before the rebase. So, it's as easy as:

git reset --hard ORIG_HEAD
link|improve this answer
feedback

Use git log -g and find the commit index you want to go back to, the just do git checkout index

link|improve this answer
feedback

You should checkout the command

git reset --merge

That eliminates the need for a git commit; git stash before a pull (Don't know about rebase though)

The command returns a workspace with uncommitted changes to the state before a conflicting pull.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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