author | Henrik Stuart <hg@hstuart.dk> |
Sat, 23 May 2009 19:57:25 +0200 | |
changeset 8559 | 4429751f5da7 |
parent 8167 | 6c82beaaa11a |
child 8633 | c31fe74a6633 |
permissions | -rwxr-xr-x |
7290 | 1 |
#!/bin/sh |
2 |
||
3 |
echo "% init repo1" |
|
4 |
hg init repo1 |
|
5 |
cd repo1 |
|
6 |
||
7 |
echo |
|
8 |
echo "% add a; ci" |
|
9 |
echo "some text" > a |
|
10 |
hg add |
|
8167
6c82beaaa11a
tests: removed redundant "-d '0 0'" from test scripts
Martin Geisler <mg@lazybytes.net>
parents:
7290
diff
changeset
|
11 |
hg ci -m first |
7290 | 12 |
|
13 |
echo |
|
14 |
echo "% cat .hg/store/fncache" |
|
15 |
cat .hg/store/fncache |
|
16 |
||
17 |
echo |
|
18 |
echo "% add a.i/b; ci" |
|
19 |
mkdir a.i |
|
20 |
echo "some other text" > a.i/b |
|
21 |
hg add |
|
8167
6c82beaaa11a
tests: removed redundant "-d '0 0'" from test scripts
Martin Geisler <mg@lazybytes.net>
parents:
7290
diff
changeset
|
22 |
hg ci -m second |
7290 | 23 |
|
24 |
echo |
|
25 |
echo "% cat .hg/store/fncache" |
|
26 |
cat .hg/store/fncache |
|
27 |
||
28 |
echo |
|
29 |
echo "% add a.i.hg/c; ci" |
|
30 |
mkdir a.i.hg |
|
31 |
echo "yet another text" > a.i.hg/c |
|
32 |
hg add |
|
8167
6c82beaaa11a
tests: removed redundant "-d '0 0'" from test scripts
Martin Geisler <mg@lazybytes.net>
parents:
7290
diff
changeset
|
33 |
hg ci -m third |
7290 | 34 |
|
35 |
echo |
|
36 |
echo "% cat .hg/store/fncache" |
|
37 |
cat .hg/store/fncache |
|
38 |
||
39 |
echo |
|
40 |
echo "% hg verify" |
|
41 |
hg verify |
|
42 |
||
43 |
echo |
|
44 |
echo "% rm .hg/store/fncache" |
|
45 |
rm .hg/store/fncache |
|
46 |
||
47 |
echo |
|
48 |
echo "% hg verify" |
|
49 |
hg verify |
|
50 |
||
51 |
exit 0 |