author | mpm@selenic.com |
Tue, 26 Jul 2005 19:03:45 -0800 | |
changeset 774 | 6592c4f5cd4f |
parent 749 | 7e4843b7efd2 |
child 793 | 445970ccf57a |
child 808 | 8f5637f0a0c0 |
child 814 | 0902ffece4b4 |
permissions | -rwxr-xr-x |
536 | 1 |
#!/bin/sh |
2 |
||
3 |
hg init |
|
4 |
touch a |
|
5 |
hg add a |
|
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
536
diff
changeset
|
6 |
hg ci -m "a" -d "0 0" |
536 | 7 |
|
8 |
echo 123 > b |
|
9 |
hg add b |
|
774
6592c4f5cd4f
Change sed patterns in tests to strip dates after spaces or tabs
mpm@selenic.com
parents:
749
diff
changeset
|
10 |
hg diff | sed "s/\(\(---\|+++\) [^ \t]*\)[ \t].*/\1/" |
536 | 11 |
|
774
6592c4f5cd4f
Change sed patterns in tests to strip dates after spaces or tabs
mpm@selenic.com
parents:
749
diff
changeset
|
12 |
hg diff -r tip | sed "s/\(\(---\|+++\) [^ \t]*\)[ \t].*/\1/" |