Mercurial > hgsubversion
view tests/fixtures/emptyrepo.sh @ 1520:fc91ba4ffa52
revset: accept additional arguments
The upstream is going to add an `order` argument to `revset.methods`
functions. Let's update our code to be compatible with it.
[1]: https://phab.mercurial-scm.org/D451
author | Jun Wu <quark@fb.com> |
---|---|
date | Mon, 28 Aug 2017 10:15:18 -0700 |
parents | 6c9b7cf1c5aa |
children |
line wrap: on
line source
#!/bin/sh # # Generate renames.svndump # mkdir temp cd temp mkdir project-orig cd project-orig mkdir trunk mkdir branches cd .. svnadmin create testrepo svnurl=file://`pwd`/testrepo svn import project-orig $svnurl -m "init project" svn co $svnurl project cd project/trunk # Create and remove a file, hgsubversion does not like # empty repositories echo a > a svn add a svn ci -m "add a" svn rm a svn ci -m "remove a" cd ../.. svnadmin dump testrepo > ../emptyrepo.svndump