简体   繁体   中英

Unable to Git Pull to update my Git local repo

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?

如果还没有提交:

 git checkout path/to/file

August has the probably best way for your problem.

You could also revert to the last version you pulled:

git reset --hard

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM