1REPO(1) Repo Manual REPO(1)
2
3
4
6 repo - repo status - manual page for repo status
7
9 repo status [<project>...]
10
12 Summary
13
14 Show the working tree status
15
17 -h, --help
18 show this help message and exit
19
20 -j JOBS, --jobs=JOBS
21 number of jobs to run in parallel (default: based on number of
22 CPU cores)
23
24 -o, --orphans
25 include objects in working directory outside of repo projects
26
27 Logging options:
28 -v, --verbose
29 show all output
30
31 -q, --quiet
32 only show errors
33
34 Run `repo help status` to view the detailed manual.
35
37 'repo status' compares the working tree to the staging area (aka in‐
38 dex), and the most recent commit on this branch (HEAD), in each project
39 specified. A summary is displayed, one line per file where there is a
40 difference between these three states.
41
42 The -j/--jobs option can be used to run multiple status queries in par‐
43 allel.
44
45 The -o/--orphans option can be used to show objects that are in the
46 working directory, but not associated with a repo project. This in‐
47 cludes unmanaged top-level files and directories, but also includes
48 deeper items. For example, if dir/subdir/proj1 and dir/subdir/proj2 are
49 repo projects, dir/subdir/proj3 will be shown if it is not known to
50 repo.
51
52 Status Display
53
54 The status display is organized into three columns of information, for
55 example if the file 'subcmds/status.py' is modified in the project
56 'repo' on branch 'devwork':
57
58 project repo/
59 branch devwork
60
61 -m subcmds/status.py
62
63 The first column explains how the staging area (index) differs from the
64 last commit (HEAD). Its values are always displayed in upper case and
65 have the following meanings:
66
67 -: no difference
68
69 A: added (not in HEAD, in index )
70
71 M: modified ( in HEAD, in index, different content )
72
73 D: deleted ( in HEAD, not in index )
74
75 R: renamed (not in HEAD, in index, path changed )
76
77 C: copied (not in HEAD, in index, copied from another)
78
79 T: mode changed ( in HEAD, in index, same content )
80
81 U: unmerged; conflict resolution required
82
83 The second column explains how the working directory differs from the
84 index. Its values are always displayed in lower case and have the fol‐
85 lowing meanings:
86
87 -: new / unknown (not in index, in work tree )
88
89 m: modified ( in index, in work tree, modified )
90
91 d: deleted ( in index, not in work tree )
92
93
94
95repo status July 2021 REPO(1)