J'essaie de récupérer le contenu d'un fichier supprimé.
$ svn log -v path_to_file/
...
r123 | user | date
D path_to_file/the_file
Ok, donc il a été supprimé à la révision 123 et ajouté autour de la révision 10 ou à peu près.
$ svn cat -r 122 svn+ssh://server/repo/path_to_file/the_file
svn: File not found: revision 554, path '/path_to_file/the_file'
$ svn log -r 122 svn+ssh://server/repo/path_to_file/the_file
svn: File not found: revision 554, path '/path_to_file/the_file'
Pourquoi ? Une idée ?