summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrepo4
-rw-r--r--subcmds/init.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/repo b/repo
index 7ffa7705..f251a1da 100755
--- a/repo
+++ b/repo
@@ -23,7 +23,7 @@ REPO_REV = 'stable'
23# limitations under the License. 23# limitations under the License.
24 24
25# increment this whenever we make important changes to this script 25# increment this whenever we make important changes to this script
26VERSION = (1, 24) 26VERSION = (1, 25)
27 27
28# increment this if the MAINTAINER_KEYS block is modified 28# increment this if the MAINTAINER_KEYS block is modified
29KEYRING_VERSION = (1, 2) 29KEYRING_VERSION = (1, 2)
@@ -183,7 +183,7 @@ group.add_option('-b', '--manifest-branch',
183group.add_option('-m', '--manifest-name', 183group.add_option('-m', '--manifest-name',
184 dest='manifest_name', 184 dest='manifest_name',
185 help='initial manifest file', metavar='NAME.xml') 185 help='initial manifest file', metavar='NAME.xml')
186group.add_option('-c', '--current-branch', 186group.add_option('--current-branch',
187 dest='current_branch_only', action='store_true', 187 dest='current_branch_only', action='store_true',
188 help='fetch only current manifest branch from server') 188 help='fetch only current manifest branch from server')
189group.add_option('--mirror', 189group.add_option('--mirror',
diff --git a/subcmds/init.py b/subcmds/init.py
index 6e99658f..9a9e8499 100644
--- a/subcmds/init.py
+++ b/subcmds/init.py
@@ -95,7 +95,7 @@ to update the working directory files.
95 g.add_option('-b', '--manifest-branch', 95 g.add_option('-b', '--manifest-branch',
96 dest='manifest_branch', 96 dest='manifest_branch',
97 help='manifest branch or revision', metavar='REVISION') 97 help='manifest branch or revision', metavar='REVISION')
98 g.add_option('-c', '--current-branch', 98 g.add_option('--current-branch',
99 dest='current_branch_only', action='store_true', 99 dest='current_branch_only', action='store_true',
100 help='fetch only current manifest branch from server') 100 help='fetch only current manifest branch from server')
101 g.add_option('-m', '--manifest-name', 101 g.add_option('-m', '--manifest-name',