Kiln » Kiln Extensions
Clone URL:  
test-remove.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
37
38
39
% setup hg init -q hg add -q normal1 sub/normal2 sub/normal3.txt sub/normal4.txt hg commit -m 'add normal files' % add bfiles hg add -q --bf big1 sub/big2 sub/big3.txt hg commit -m 'added bfiles' % remove sub/*.txt hg remove 'glob:sub/*.txt' hg status hg commit -m 'remove bfiles' % test update hg up -r 1 hg up % remove single normal files and add hg remove normal1 sub/normal2 hg add normal1 sub/normal2 hg status % remove single bfiles and add hg remove big1 sub/big2 hg add --bf big1 sub/big2 hg status % remove single normal files hg remove normal1 hg remove sub/normal2 hg status % remove single bfiles hg remove big1 hg remove sub/big2 hg status hg commit -m 'all gone' hg status