tests/test-convert-git
author Patrick Mezard <pmezard@gmail.com>
Sun, 26 Aug 2007 15:07:13 +0200
changeset 5231 ceb6f242fb81
child 5271 5c2ca6d6ab21
permissions -rwxr-xr-x
Test git repository conversion

#!/bin/sh

"$TESTDIR/hghave" git || exit 80

echo "[extensions]" >> $HGRCPATH
echo "convert=" >> $HGRCPATH

mkdir git-repo
cd git-repo
git init
echo a > a
git add a
git commit -m t1 > /dev/null || echo "git commit error"
echo b >> a
git commit -a -m t2 > /dev/null || echo "git commit error"
cd ..

hg convert git-repo