0

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

Nadir SOUALEM
  • 3,451
  • 2
  • 23
  • 30

1 Answers1

1

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?

Sander Rijken
  • 21,376
  • 3
  • 61
  • 85