vote up 2 vote down star

I removed a file in my local Git repo. I want the file back by updating my Git repo.

I run the following unsuccessfully

git pull

It says upToDate, but I did not get the newest file. The public repo at github does not use SVN, so the problem cannot be SVN.

How can you update your local Git repo, such that you get your removed File back to your computer?

flag

2 Answers

vote up 2 vote down check

August has the probably best way for your problem.

You could also revert to the last version you pulled:

git reset --hard
link|flag
vote up 4 vote down

If it hasn't been committed yet:

 git checkout path/to/file
link|flag
1  
@August: I did not get your command work by running: dpaste.com/42337 – Masi May 9 at 8:45
I have a similar problem. – Masi May 9 at 8:46
@SimpleQuestions: The path should be a relative path to the file in your local repository, e.g. "git checkout theFile". You may also specify the revision "git checkout master~1 theFile". See the examples at kernel.org/pub/software/… – Esko Luontola May 9 at 9:08

Your Answer

Get an OpenID
or

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