diff options
Diffstat (limited to 'subcmds/info.py')
-rw-r--r-- | subcmds/info.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/subcmds/info.py b/subcmds/info.py index 8e017ed8..2be56109 100644 --- a/subcmds/info.py +++ b/subcmds/info.py | |||
@@ -39,6 +39,9 @@ class Info(PagedCommand): | |||
39 | p.add_option('-c', '--current-branch', | 39 | p.add_option('-c', '--current-branch', |
40 | dest="current_branch", action="store_true", | 40 | dest="current_branch", action="store_true", |
41 | help="consider only checked out branches") | 41 | help="consider only checked out branches") |
42 | p.add_option('--no-current-branch', | ||
43 | dest='current_branch', action='store_false', | ||
44 | help='consider all local branches') | ||
42 | # Turn this into a warning & remove this someday. | 45 | # Turn this into a warning & remove this someday. |
43 | p.add_option('-b', | 46 | p.add_option('-b', |
44 | dest='current_branch', action='store_true', | 47 | dest='current_branch', action='store_true', |