##// END OF EJS Templates
Merge with crew
Merge with crew

File last commit:

r3368:751df21d default
r3692:49136e90 merge default
Show More
test-git-export
62 lines | 912 B | text/plain | TextLexer
Brendan Cully
Add diff --git option
r2907 #!/bin/sh
hg init a
cd a
echo start > start
hg ci -Amstart -d '0 0'
echo new > new
hg ci -Amnew -d '0 0'
echo '% new file'
Stephen Darnell
Add -D/--nodates options to hg diff/export that removes dates from diff headers...
r3199 hg diff --git -r 0
Brendan Cully
Add diff --git option
r2907
hg cp new copy
hg ci -mcopy -d '0 0'
echo '% copy'
Stephen Darnell
Add -D/--nodates options to hg diff/export that removes dates from diff headers...
r3199 hg diff --git -r 1:tip
Brendan Cully
Add diff --git option
r2907
hg mv copy rename
hg ci -mrename -d '0 0'
echo '% rename'
Stephen Darnell
Add -D/--nodates options to hg diff/export that removes dates from diff headers...
r3199 hg diff --git -r 2:tip
Brendan Cully
Add diff --git option
r2907
hg rm rename
hg ci -mdelete -d '0 0'
echo '% delete'
Stephen Darnell
Add -D/--nodates options to hg diff/export that removes dates from diff headers...
r3199 hg diff --git -r 3:tip
Brendan Cully
Add diff --git option
r2907
cat > src <<EOF
1
2
3
4
5
EOF
hg ci -Amsrc -d '0 0'
chmod +x src
hg ci -munexec -d '0 0'
echo '% chmod 644'
Stephen Darnell
Add -D/--nodates options to hg diff/export that removes dates from diff headers...
r3199 hg diff --git -r 5:tip
Brendan Cully
Add diff --git option
r2907
hg mv src dst
chmod -x dst
echo a >> dst
hg ci -mrenamemod -d '0 0'
echo '% rename+mod+chmod'
Stephen Darnell
Add -D/--nodates options to hg diff/export that removes dates from diff headers...
r3199 hg diff --git -r 6:tip
Benoit Boissinot
git --diff: fix traceback when getting mode change...
r3066
echo '% nonexistent in tip+chmod'
Stephen Darnell
Add -D/--nodates options to hg diff/export that removes dates from diff headers...
r3199 hg diff --git -r 5:6
Brendan Cully
Add test for git binary diff support
r3368
echo '% binary diff'
cp $TESTDIR/binfile.bin .
hg add binfile.bin
hg diff --git > b.diff
cat b.diff
echo '% import binary diff'
hg revert binfile.bin
rm binfile.bin
hg import -mfoo b.diff
cmp binfile.bin $TESTDIR/binfile.bin