Mercurial > hgsubversion
view tests/fixtures/pushrenames.sh @ 970:3e59f9af15b0
svnrepo: Support --insecure option the same as the mercurial
To bypass verification of ssl certificate on one of the following:
- Specify the --insecure option
- Set the fingerprint to config hostfingerprints
author | Mitsuhiro Koga <shiena.jp@gmail.com> |
---|---|
date | Mon, 29 Oct 2012 20:14:47 +0900 |
parents | 49b7cbe4c8e3 |
children |
line wrap: on
line source
#!/bin/sh # # Generate pushrenames.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 echo a > a echo b > b echo c > c echo d > d echo e > e svn add a b c d e svn ci -m "add files" cd ../.. svnadmin dump testrepo > ../pushrenames.svndump