##// END OF EJS Templates
Make test-convert-git compatible with other git versions (tested with 1.4.4.3)
Thomas Arendsen Hein -
r5231:5c2ca6d6 default
parent child Browse files
Show More
@@ -7,12 +7,12 b' echo "convert=" >> $HGRCPATH'
7
7
8 mkdir git-repo
8 mkdir git-repo
9 cd git-repo
9 cd git-repo
10 git init
10 git init-db >/dev/null 2>/dev/null
11 echo a > a
11 echo a > a
12 git add a
12 git add a
13 git commit -m t1 > /dev/null || echo "git commit error"
13 git commit -m t1 >/dev/null 2>/dev/null || echo "git commit error"
14 echo b >> a
14 echo b >> a
15 git commit -a -m t2 > /dev/null || echo "git commit error"
15 git commit -a -m t2 >/dev/null || echo "git commit error"
16 cd ..
16 cd ..
17
17
18 hg convert git-repo
18 hg convert git-repo
@@ -1,4 +1,3 b''
1 Initialized empty Git repository in .git/
2 assuming destination git-repo-hg
1 assuming destination git-repo-hg
3 initializing destination git-repo-hg repository
2 initializing destination git-repo-hg repository
4 scanning source...
3 scanning source...
General Comments 0
You need to be logged in to leave comments. Login now