Created
October 13, 2010 02:43
-
-
Save williamn/623330 to your computer and use it in GitHub Desktop.
How to fix: svnadmin: Dump stream contains a malformed header (with no ':') at '* Dumped revision 0.'
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
# If you happen to have this problem when loading your SVN dump | |
# svnadmin: Dump stream contains a malformed header (with no ':') at '* Dumped revision 0.' | |
grep --binary-files=text -v '^* Dumped revision' ./repository.dump > ./repository.clear-dump | |
svnadmin load /new/path/to/your/repository < ./repository.clear-dump |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you help me how to use this?
and explain me the reason for this error.