1SVK::Command::Status(3)User Contributed Perl DocumentatioSnVK::Command::Status(3)
2
3
4
6 SVK::Command::Status - Display the status of items in the checkout copy
7
9 status [PATH..]
10
12 -q [--quiet] : do not display files not under version control
13 --no-ignore : disregard default and svn:ignore property ignores
14 -N [--non-recursive] : do not descend recursively
15 -v [--verbose] : print full revision information on every item
16
18 Show pending changes in the checkout copy.
19
20 The first three columns in the output are each one character wide:
21
22 First column, says if item was added, deleted, or otherwise changed:
23
24 ' ' no modifications
25 'A' Added
26 'C' Conflicted
27 'D' Deleted
28 'I' Ignored
29 'M' Modified
30 'R' Replaced
31 '?' item is not under version control
32 '!' item is missing (removed by non-svk command) or incomplete
33 '~' versioned item obstructed by some item of a different kind
34
35 Second column, modifications of a file's or directory's properties:
36
37 ' ' no modifications
38 'C' Conflicted
39 'M' Modified
40
41 Third column, scheduled commit will contain addition-with-history
42
43 ' ' no history scheduled with commit
44 '+' history scheduled with commit
45
46 Remaining fields are variable width and delimited by spaces:
47 The working revision (with -v)
48 The last committed revision and last committed author (with -v)
49 The working copy path is always the final field, so it can include
50 spaces.
51
52 Example output:
53
54 svk status
55 M bar.c
56 A + qax.c
57
58 svk status --verbose wc
59 M 53 2 sally wc/bar.c
60 53 51 harry wc/foo.c
61 A + - ? ? wc/qax.c
62 53 43 harry wc/zig.c
63 53 20 sally wc
64
65
66
67perl v5.30.0 2019-07-26 SVK::Command::Status(3)