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

I use git clone from github and I deleted some files & modified some files. Now I want to keep my local code & restore to the original form. Is there a command to achieve this?

share|improve this question

3 Answers

up vote 7 down vote accepted

If you want to save you changes first, you can commit them before and then checkout you code to previous commit(s): git checkout HEAD^ (one commit back) git checkout GEAD~2 (2 commits back)

Or, if you don't need your changes anymore, run git reset --hard HEAD

share|improve this answer

git checkout <name of file>

If you want to check out the whole repository, then from the root directory use

git checkout .

share|improve this answer

git reset --hard

share|improve this answer

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.