test-diff-binary-file
25 lines
| 415 B
| text/plain
|
TextLexer
/ tests / test-diff-binary-file
Alexis S. L. Carvalho
|
r4104 | #!/bin/sh | ||
hg init a | ||||
cd a | ||||
cp $TESTDIR/binfile.bin . | ||||
hg add binfile.bin | ||||
Martin Geisler
|
r8167 | hg ci -m 'add binfile.bin' | ||
Alexis S. L. Carvalho
|
r4104 | |||
echo >> binfile.bin | ||||
Martin Geisler
|
r8167 | hg ci -m 'change binfile.bin' | ||
Alexis S. L. Carvalho
|
r4104 | |||
hg revert -r 0 binfile.bin | ||||
Martin Geisler
|
r8167 | hg ci -m 'revert binfile.bin' | ||
Alexis S. L. Carvalho
|
r4104 | |||
echo % diff -r 0 -r 1 | ||||
hg diff --nodates -r 0 -r 1 | ||||
echo % diff -r 0 -r 2 | ||||
hg diff --nodates -r 0 -r 2 | ||||
echo % diff --git -r 0 -r 1 | ||||
hg diff --git -r 0 -r 1 | ||||
echo % diff --git -r 0 -r 2 | ||||
hg diff --git -r 0 -r 2 | ||||