##// END OF EJS Templates
Test git repository conversion
Patrick Mezard -
r5219:ceb6f242 default
parent child Browse files
Show More
@@ -0,0 +1,19 b''
1 #!/bin/sh
2
3 "$TESTDIR/hghave" git || exit 80
4
5 echo "[extensions]" >> $HGRCPATH
6 echo "convert=" >> $HGRCPATH
7
8 mkdir git-repo
9 cd git-repo
10 git init
11 echo a > a
12 git add a
13 git commit -m t1 > /dev/null || echo "git commit error"
14 echo b >> a
15 git commit -a -m t2 > /dev/null || echo "git commit error"
16 cd ..
17
18 hg convert git-repo
19
@@ -0,0 +1,8 b''
1 Initialized empty Git repository in .git/
2 assuming destination git-repo-hg
3 initializing destination git-repo-hg repository
4 scanning source...
5 sorting...
6 converting...
7 1 t1
8 0 t2
General Comments 0
You need to be logged in to leave comments. Login now