Revisions of svn dump
I have a dump file dump.svn This dump file includes the revision 0 to 2879 When i load it
开发者_开发问答svnadmin load /path/to/new/repository < /path/to/dump.svn
I have a corrupted revision (1174) , so loading it failed . How to load only the revisions 1175 to 2879 in my new server.
Thank you
You can't load just the revision 1175 and higher, because they are stored as changed based on the earlier versions.
Is it possible to fix the original repository with svnadmin recover $REPOS
?
精彩评论