##// END OF EJS Templates
Push over HTTP: really tell the user the size of the bundle
Push over HTTP: really tell the user the size of the bundle

File last commit:

r5231:5c2ca6d6 default
r5333:6e6a00a7 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