summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2009-06-12 17:35:43 -0700
committerShawn O. Pearce <sop@google.com>2009-06-12 17:35:43 -0700
commit7da73d6f3ba579c67e58499b785dc4ac5beb9391 (patch)
treed23bc6178fbd43b4ef904d8fcf9f5db318d56209
parentf0d4c36701613dc9c305208d81b139208e40414c (diff)
downloadgit-repo-7da73d6f3ba579c67e58499b785dc4ac5beb9391.tar.gz
branches: Describe output format in `repo help branches`v1.6.8.3
Signed-off-by: Shawn O. Pearce <sop@google.com>
-rw-r--r--subcmds/branches.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/subcmds/branches.py b/subcmds/branches.py
index 87c4f9b6..0e3ab3c2 100644
--- a/subcmds/branches.py
+++ b/subcmds/branches.py
@@ -61,6 +61,33 @@ class Branches(Command):
61%prog [<project>...] 61%prog [<project>...]
62 62
63Summarizes the currently available topic branches. 63Summarizes the currently available topic branches.
64
65Branch Display
66--------------
67
68The branch display output by this command is organized into four
69columns of information; for example:
70
71 *P nocolor | in repo
72 repo2 |
73
74The first column contains a * if the branch is the currently
75checked out branch in any of the specified projects, or a blank
76if no project has the branch checked out.
77
78The second column contains either blank, p or P, depending upon
79the upload status of the branch.
80
81 (blank): branch not yet published by repo upload
82 P: all commits were published by repo upload
83 p: only some commits were published by repo upload
84
85The third column contains the branch name.
86
87The fourth column (after the | separator) lists the projects that
88the branch appears in, or does not appear in. If no project list
89is shown, then the branch appears in all projects.
90
64""" 91"""
65 92
66 def Execute(self, opt, args): 93 def Execute(self, opt, args):