Skip to content

Instantly share code, notes, and snippets.

@srugano
Last active December 26, 2015 23:38
Show Gist options
  • Save srugano/7231522 to your computer and use it in GitHub Desktop.
Save srugano/7231522 to your computer and use it in GitHub Desktop.
recouvrir un fichier que vous avez déjà supprimé sous git
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