test-diffdir
14 lines
| 308 B
| text/plain
|
TextLexer
/ tests / test-diffdir
mpm@selenic.com
|
r536 | #!/bin/sh | ||
hg init | ||||
touch a | ||||
hg add a | ||||
mpm@selenic.com
|
r749 | hg ci -m "a" -d "0 0" | ||
mpm@selenic.com
|
r536 | |||
echo 123 > b | ||||
hg add b | ||||
TK Soh
|
r949 | hg diff | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \ | ||
-e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/" | ||||
mpm@selenic.com
|
r536 | |||
TK Soh
|
r949 | hg diff -r tip | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \ | ||
-e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/" | ||||