Mercurial > hg
comparison tests/test-convert-git @ 5219:ceb6f242fb81
Test git repository conversion
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Sun, 26 Aug 2007 15:07:13 +0200 |
parents | |
children | 5c2ca6d6ab21 |
comparison
equal
deleted
inserted
replaced
5218:4fa0f2dff643 | 5219:ceb6f242fb81 |
---|---|
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 |