0

I have a svn repository that I backup with

svnadmin dump myrepo | gzip -9 > myrepo-$(date +"%Y-%m-%d-%T").dump.gz

hourly (I'm a little crazy).

There is a way for dump the last only 10 or 20 revision of the svn?

Thanks

1 Answers1

0
  • svndumpfilter has nothing common with revision ranges,
  • svnadmin dump can be used with -r LOWER:UPPER option,
  • svnlook youngest give you latest revision in repo.
bahrep
  • 29,961
  • 12
  • 103
  • 150
Lazy Badger
  • 94,711
  • 9
  • 78
  • 110