diff options
author | Mike Frysinger <vapier@google.com> | 2021-05-03 00:51:52 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@google.com> | 2021-05-03 16:57:23 +0000 |
commit | b8e09ea1d6e8051697da52db1291e8267844e206 (patch) | |
tree | d708bf68be5f7d5f644290b4b5f4f2797d30568c /subcmds/info.py | |
parent | feb28914bd17aacc2d251516e504a33f991f86c4 (diff) | |
download | git-repo-b8e09ea1d6e8051697da52db1291e8267844e206.tar.gz |
harmonize --current-branch short option across subcommands
We're inconsistent with the short option for this flag:
* gitc-init: <none as -c is already used>
* info: -b
* init: -c
* overview: -b
* sync: -c
* upload: --cbr
Since info & overview are not as heavily used as the others, switch
them from -b to -c. We leave -b in as a hidden alias for now.
Similarly, switch upload from --cbr to just -c. A lot of people
use --cbr, so we leave this as a hidden alias for now too.
Ideally gitc-init wouldn't use -c, but that ship has sailed, and
we're more likely to deprecate gitc entirely at this point.
This provides a consistent set of options across subcommands.
Bug: https://crbug.com/gerrit/12401
Change-Id: Iec249729223866fe1ea0ebabed12ca851cc38b35
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/304902
Reviewed-by: Raman Tenneti <rtenneti@google.com>
Tested-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'subcmds/info.py')
-rw-r--r-- | subcmds/info.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/subcmds/info.py b/subcmds/info.py index 6381fa8e..8e017ed8 100644 --- a/subcmds/info.py +++ b/subcmds/info.py | |||
@@ -12,6 +12,8 @@ | |||
12 | # See the License for the specific language governing permissions and | 12 | # See the License for the specific language governing permissions and |
13 | # limitations under the License. | 13 | # limitations under the License. |
14 | 14 | ||
15 | import optparse | ||
16 | |||
15 | from command import PagedCommand | 17 | from command import PagedCommand |
16 | from color import Coloring | 18 | from color import Coloring |
17 | from git_refs import R_M, R_HEADS | 19 | from git_refs import R_M, R_HEADS |
@@ -25,7 +27,7 @@ class _Coloring(Coloring): | |||
25 | class Info(PagedCommand): | 27 | class Info(PagedCommand): |
26 | common = True | 28 | common = True |
27 | helpSummary = "Get info on the manifest branch, current branch or unmerged branches" | 29 | helpSummary = "Get info on the manifest branch, current branch or unmerged branches" |
28 | helpUsage = "%prog [-dl] [-o [-b]] [<project>...]" | 30 | helpUsage = "%prog [-dl] [-o [-c]] [<project>...]" |
29 | 31 | ||
30 | def _Options(self, p): | 32 | def _Options(self, p): |
31 | p.add_option('-d', '--diff', | 33 | p.add_option('-d', '--diff', |
@@ -34,9 +36,13 @@ class Info(PagedCommand): | |||
34 | p.add_option('-o', '--overview', | 36 | p.add_option('-o', '--overview', |
35 | dest='overview', action='store_true', | 37 | dest='overview', action='store_true', |
36 | help='show overview of all local commits') | 38 | help='show overview of all local commits') |
37 | p.add_option('-b', '--current-branch', | 39 | p.add_option('-c', '--current-branch', |
38 | dest="current_branch", action="store_true", | 40 | dest="current_branch", action="store_true", |
39 | help="consider only checked out branches") | 41 | help="consider only checked out branches") |
42 | # Turn this into a warning & remove this someday. | ||
43 | p.add_option('-b', | ||
44 | dest='current_branch', action='store_true', | ||
45 | help=optparse.SUPPRESS_HELP) | ||
40 | p.add_option('-l', '--local-only', | 46 | p.add_option('-l', '--local-only', |
41 | dest="local", action="store_true", | 47 | dest="local", action="store_true", |
42 | help="Disable all remote operations") | 48 | help="Disable all remote operations") |