##// END OF EJS Templates
hgweb: Show date of last change for each file in manifest
hgweb: Show date of last change for each file in manifest

File last commit:

r5231:5c2ca6d6 default
r5273:6e0f05f6 default
Show More
test-convert-git
19 lines | 320 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
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