Kiln » Kiln Extensions
Clone URL:  
test-update.py.out
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
% setup hg init -q hg add normal1 sub/normal2 sub/normal3.txt sub/normal4.txt hg add --bf big1 sub/big2 sub/big3.txt hg commit -m 'added bfiles' hg commit -m 'edit 1' hg remove sub/big3.txt sub/normal4.txt hg commit -m 'edit 2 and remove' hg add sub/normal4.txt hg add --bf sub/big3.txt hg commit -m 'edit 3 and add' % update to revision 0 and back hg up -r 0 hg up % change files and update check hg up --check -r 1 hg up -C hg up -c -r 2 hg up -C hg up --check -r 0 hg up -C % change files and update clean hg up -C -r 0 hg up hg up -C -r 1 hg up hg up --clean -r 2 hg up % change bfile and normal update hg up -y -r 0 hg up --clean hg up -y -r 2