Last active
December 26, 2015 23:38
-
-
Save srugano/7231522 to your computer and use it in GitHub Desktop.
recouvrir un fichier que vous avez déjà supprimé sous git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Premièrement si vous n’êtes pas sur du nom du fichier supprimé, vous pouvez le retrouver dans les logs de git ... | |
git log --diff-filter=D --summary | |
Puis retrouvez le dernier commit qui a affecté le fichier | |
git rev-list -n 1 HEAD -- ./path/to/file/ | |
.. on va appeler cela par [NUMERO_DE _REVISION] | |
Maintenant nous pouvons passer à la dernière révision | |
git checkout [NUMERO_DE_REVISION]^ -- ./path/to/file/ | |
Voir: http://stackoverflow.com/questions/953481/restore-a-deleted-file-in-a-git-repo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment