author | David Soria Parra <dsp@php.net> |
Sun, 07 Dec 2008 08:47:02 +0100 | |
changeset 7485 | ecfb683675ed |
parent 6898 | 69aeaaaf6e07 |
child 8016 | baaa832fd253 |
permissions | -rwxr-xr-x |
6893 | 1 |
#!/bin/sh |
2 |
||
3 |
echo % prepare repo |
|
4 |
hg init |
|
5 |
echo "some text" > FOO.txt |
|
6 |
echo "another text" > bar.txt |
|
7 |
echo "more text" > QUICK.txt |
|
8 |
hg add |
|
9 |
hg ci -d '0 0' -mtest1 |
|
10 |
||
11 |
echo |
|
12 |
echo % verify |
|
13 |
hg verify |
|
14 |
||
15 |
echo |
|
16 |
echo % introduce some bugs in repo |
|
17 |
cd .hg/store/data |
|
18 |
mv _f_o_o.txt.i X_f_o_o.txt.i |
|
19 |
mv bar.txt.i xbar.txt.i |
|
20 |
rm _q_u_i_c_k.txt.i |
|
21 |
||
22 |
echo |
|
23 |
echo % verify |
|
24 |
hg verify |
|
25 |
||
6898
69aeaaaf6e07
store: simplify class hierarchy
Matt Mackall <mpm@selenic.com>
parents:
6893
diff
changeset
|
26 |
exit 0 |