Kiln » Kiln Extensions
Clone URL:  
test-add.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
% setup hg init -q hg add -q normal1 sub/normal2 hg commit -m 'add normal files' % add existing normal files hg add --bf normal1 sub/normal2 hg status % add bfiles hg add --bf big1 sub/big2 hg status hg commit -m 'added bfiles' % add existing bfiles hg add --bf big1 sub/big2 hg status % recursive add on existing subdirectory hg add --bf -v sub hg status hg commit -m 'Add a whole subdir of big files' % status after committing an add hg status % adding bfiles and normal files with hgrc settings hg add dir hg status hg commit -m 'Added some stuff' % adding bfiles and normal files with size setting hg add --bfsize 10 dir2 hg status hg commit -m 'Added some stuff' hg add foo hg add hg status