##// END OF EJS Templates
manifest: minor performance tweak
manifest: minor performance tweak

File last commit:

r5231:5c2ca6d6 default
r5328:8d00788c default
Show More
test-convert-git
19 lines | 356 B | text/plain | TextLexer
#!/bin/sh
"$TESTDIR/hghave" git || exit 80
echo "[extensions]" >> $HGRCPATH
echo "convert=" >> $HGRCPATH
mkdir git-repo
cd git-repo
git init-db >/dev/null 2>/dev/null
echo a > a
git add a
git commit -m t1 >/dev/null 2>/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