Skip to content

Instantly share code, notes, and snippets.

@williamn
Created October 13, 2010 02:43
Show Gist options
  • Save williamn/623330 to your computer and use it in GitHub Desktop.
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.'
# 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
@SabareeshSS
Copy link

Can you help me how to use this?
and explain me the reason for this error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment