Possible Duplicate:
Restore a deleted file in a Git repo
How do I restore a file I accidentally removed from my git repository? I know this is a trivial question, but I haven't found the answer in the documentation.
How do I restore a file I accidentally removed from my |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Commits may be specified directly by SHA1, or via a branch or tag. Make sure that the represents the state of the repository when the deleted file was still present. If the commit argument is omitted, the currently checked out commit (HEAD) will be used. |
|||||||
|
|
Did you commit after delete? If not you can commit and checkout the file back again. |
|||
|
|