Show More
@@ -1,17 +1,17 | |||
|
1 | 1 | #!/bin/sh |
|
2 | 2 | HG=hg |
|
3 | 3 | "$HG" init |
|
4 | 4 | mkdir b |
|
5 | 5 | echo 'Bouncy' >b/bouncy |
|
6 | 6 | echo 'tricycle' >b/vehicle |
|
7 | 7 | "$HG" add b/bouncy |
|
8 | 8 | "$HG" add b/vehicle |
|
9 | 9 | "$HG" commit -m 'Adding bouncy' |
|
10 | 10 | echo 'bouncy' >>b/bouncy |
|
11 | 11 | "$HG" commit -m 'Making it bouncier' |
|
12 | 12 | "$HG" update -C 0 |
|
13 | 13 | echo 'stationary' >>b/vehicle |
|
14 | 14 | "$HG" commit -m 'Clarifying the vehicle.' |
|
15 | 15 | "$HG" update -C 1 |
|
16 | 16 | chmod a-w b/vehicle |
|
17 |
"$HG" update -m 2 2>&1 | sed 's|^\(.*[ ]\) |
|
|
17 | "$HG" update -m 2 2>&1 | sed 's|^\(.*[ ]\).*/\([^/]*/[^/]*/[^/]*\)$|\1\2|g' |
General Comments 0
You need to be logged in to leave comments.
Login now