blob: 47a1c9fa6bf03cfdd585eaaef6b82110122f94b9 [file] [log] [blame]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Sarah Owenscecd1d82012-11-01 22:59:27 -070016from __future__ import print_function
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070017import os
Conley Owensd21720d2012-04-16 11:02:21 -070018import platform
Conley Owens971de8e2012-04-16 10:36:08 -070019import re
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070020import sys
David Pursehouse59bbb582013-05-17 10:49:33 +090021
22from pyversion import is_python3
23if is_python3():
Victor Boivie2b30e3a2012-10-05 12:37:58 +020024 import urllib.parse
David Pursehouse59bbb582013-05-17 10:49:33 +090025else:
Victor Boivie2b30e3a2012-10-05 12:37:58 +020026 import imp
27 import urlparse
28 urllib = imp.new_module('urllib')
Anthony King7993f3c2015-06-03 17:21:56 +010029 urllib.parse = urlparse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070030
31from color import Coloring
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080032from command import InteractiveCommand, MirrorSafeCommand
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070033from error import ManifestParseError
Jonathan Nieder93719792015-03-17 11:29:58 -070034from project import SyncBuffer
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -070035from git_config import GitConfig
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -070036from git_command import git_require, MIN_GIT_VERSION
Renaud Paquaya65adf72016-11-03 10:37:53 -070037import platform_utils
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070038
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080039class Init(InteractiveCommand, MirrorSafeCommand):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070040 common = True
41 helpSummary = "Initialize repo in the current directory"
42 helpUsage = """
43%prog [options]
44"""
45 helpDescription = """
46The '%prog' command is run once to install and initialize repo.
47The latest repo source code and manifest collection is downloaded
48from the server and is installed in the .repo/ directory in the
49current working directory.
50
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070051The optional -b argument can be used to select the manifest branch
52to checkout and use. If no branch is specified, master is assumed.
53
54The optional -m argument can be used to specify an alternate manifest
55to be used. If no manifest is specified, the manifest default.xml
56will be used.
57
Shawn O. Pearce88443382010-10-08 10:02:09 +020058The --reference option can be used to point to a directory that
59has the content of a --mirror sync. This will make the working
60directory use as much data as possible from the local reference
61directory when fetching from the server. This will make the sync
62go a lot faster by reducing data traffic on the network.
63
Hu xiuyun9711a982015-12-11 11:16:41 +080064The --no-clone-bundle option disables any attempt to use
65$URL/clone.bundle to bootstrap a new Git repository from a
66resumeable bundle file on a content delivery network. This
67may be necessary if there are problems with the local Python
68HTTP client or proxy configuration, but the Git binary works.
Shawn O. Pearce88443382010-10-08 10:02:09 +020069
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070070Switching Manifest Branches
71---------------------------
72
73To switch to another manifest branch, `repo init -b otherbranch`
74may be used in an existing client. However, as this only updates the
75manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary
76to update the working directory files.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070077"""
78
79 def _Options(self, p):
80 # Logging
81 g = p.add_option_group('Logging options')
82 g.add_option('-q', '--quiet',
83 dest="quiet", action="store_true", default=False,
84 help="be quiet")
85
86 # Manifest
87 g = p.add_option_group('Manifest options')
88 g.add_option('-u', '--manifest-url',
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -080089 dest='manifest_url',
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070090 help='manifest repository location', metavar='URL')
91 g.add_option('-b', '--manifest-branch',
92 dest='manifest_branch',
93 help='manifest branch or revision', metavar='REVISION')
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -050094 g.add_option('-c', '--current-branch',
95 dest='current_branch_only', action='store_true',
96 help='fetch only current manifest branch from server')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070097 g.add_option('-m', '--manifest-name',
98 dest='manifest_name', default='default.xml',
99 help='initial manifest file', metavar='NAME.xml')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800100 g.add_option('--mirror',
101 dest='mirror', action='store_true',
David Pursehouse3d07da82012-08-15 14:22:08 +0900102 help='create a replica of the remote repositories '
103 'rather than a client working directory')
Shawn O. Pearce88443382010-10-08 10:02:09 +0200104 g.add_option('--reference',
105 dest='reference',
106 help='location of mirror directory', metavar='DIR')
Doug Anderson30d45292011-05-04 15:01:04 -0700107 g.add_option('--depth', type='int', default=None,
108 dest='depth',
109 help='create a shallow clone with given depth; see git clone')
Julien Campergue335f5ef2013-10-16 11:02:35 +0200110 g.add_option('--archive',
111 dest='archive', action='store_true',
112 help='checkout an archive instead of a git repository for '
113 'each project. See git archive.')
Martin Kellye4e94d22017-03-21 16:05:12 -0700114 g.add_option('--submodules',
115 dest='submodules', action='store_true',
116 help='sync any submodules associated with the manifest repo')
Colin Cross5acde752012-03-28 20:15:45 -0700117 g.add_option('-g', '--groups',
David Holmer0a1c6a12012-11-14 19:19:00 -0500118 dest='groups', default='default',
119 help='restrict manifest projects to ones with specified '
120 'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]',
Colin Cross5acde752012-03-28 20:15:45 -0700121 metavar='GROUP')
Conley Owensd21720d2012-04-16 11:02:21 -0700122 g.add_option('-p', '--platform',
123 dest='platform', default='auto',
Conley Owensbb1b5f52012-08-13 13:11:18 -0700124 help='restrict manifest projects to ones with a specified '
Conley Owensd21720d2012-04-16 11:02:21 -0700125 'platform group [auto|all|none|linux|darwin|...]',
126 metavar='PLATFORM')
Hu xiuyun9711a982015-12-11 11:16:41 +0800127 g.add_option('--no-clone-bundle',
128 dest='no_clone_bundle', action='store_true',
129 help='disable use of /clone.bundle on HTTP/HTTPS')
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500130 g.add_option('--no-tags',
131 dest='no_tags', action='store_true',
132 help="don't fetch tags in the manifest")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700133
134 # Tool
Shawn O. Pearcefd89b672009-04-18 11:28:57 -0700135 g = p.add_option_group('repo Version options')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700136 g.add_option('--repo-url',
137 dest='repo_url',
138 help='repo repository location', metavar='URL')
139 g.add_option('--repo-branch',
140 dest='repo_branch',
141 help='repo branch or revision', metavar='REVISION')
142 g.add_option('--no-repo-verify',
143 dest='no_repo_verify', action='store_true',
144 help='do not verify repo source code')
145
Victor Boivie841be342011-04-05 11:31:10 +0200146 # Other
147 g = p.add_option_group('Other options')
148 g.add_option('--config-name',
149 dest='config_name', action="store_true", default=False,
150 help='Always prompt for name/e-mail')
151
David Pursehouse3f5ea0b2012-11-17 03:13:09 +0900152 def _RegisteredEnvironmentOptions(self):
153 return {'REPO_MANIFEST_URL': 'manifest_url',
154 'REPO_MIRROR_LOCATION': 'reference'}
155
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700156 def _SyncManifest(self, opt):
157 m = self.manifest.manifestProject
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700158 is_new = not m.Exists
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700159
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700160 if is_new:
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800161 if not opt.manifest_url:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700162 print('fatal: manifest url (-u) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700163 sys.exit(1)
164
165 if not opt.quiet:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700166 print('Get %s' % GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),
167 file=sys.stderr)
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200168
169 # The manifest project object doesn't keep track of the path on the
170 # server where this git is located, so let's save that here.
171 mirrored_manifest_git = None
172 if opt.reference:
Anthony King7993f3c2015-06-03 17:21:56 +0100173 manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:]
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200174 mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path)
175 if not mirrored_manifest_git.endswith(".git"):
176 mirrored_manifest_git += ".git"
177 if not os.path.exists(mirrored_manifest_git):
Samuel Holland5f0e57d2018-01-22 11:00:24 -0600178 mirrored_manifest_git = os.path.join(opt.reference,
179 '.repo/manifests.git')
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200180
181 m._InitGitDir(mirror_git=mirrored_manifest_git)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700182
183 if opt.manifest_branch:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700184 m.revisionExpr = opt.manifest_branch
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700185 else:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700186 m.revisionExpr = 'refs/heads/master'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700187 else:
188 if opt.manifest_branch:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700189 m.revisionExpr = opt.manifest_branch
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700190 else:
191 m.PreSync()
192
193 if opt.manifest_url:
194 r = m.GetRemote(m.remote.name)
195 r.url = opt.manifest_url
196 r.ResetFetch()
197 r.Save()
198
David Pursehouse1d947b32012-10-25 12:23:11 +0900199 groups = re.split(r'[,\s]+', opt.groups)
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700200 all_platforms = ['linux', 'darwin', 'windows']
Conley Owensd21720d2012-04-16 11:02:21 -0700201 platformize = lambda x: 'platform-' + x
202 if opt.platform == 'auto':
203 if (not opt.mirror and
204 not m.config.GetString('repo.mirror') == 'true'):
205 groups.append(platformize(platform.system().lower()))
206 elif opt.platform == 'all':
Colin Cross54657272012-04-23 13:39:48 -0700207 groups.extend(map(platformize, all_platforms))
Conley Owensd21720d2012-04-16 11:02:21 -0700208 elif opt.platform in all_platforms:
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700209 groups.append(platformize(opt.platform))
Conley Owensd21720d2012-04-16 11:02:21 -0700210 elif opt.platform != 'none':
Sarah Owenscecd1d82012-11-01 22:59:27 -0700211 print('fatal: invalid platform flag', file=sys.stderr)
Conley Owensd21720d2012-04-16 11:02:21 -0700212 sys.exit(1)
213
Conley Owens971de8e2012-04-16 10:36:08 -0700214 groups = [x for x in groups if x]
215 groupstr = ','.join(groups)
David Holmer0a1c6a12012-11-14 19:19:00 -0500216 if opt.platform == 'auto' and groupstr == 'default,platform-' + platform.system().lower():
Conley Owens971de8e2012-04-16 10:36:08 -0700217 groupstr = None
218 m.config.SetString('manifest.groups', groupstr)
Colin Cross5acde752012-03-28 20:15:45 -0700219
Shawn O. Pearce88443382010-10-08 10:02:09 +0200220 if opt.reference:
221 m.config.SetString('repo.reference', opt.reference)
222
Julien Campergue335f5ef2013-10-16 11:02:35 +0200223 if opt.archive:
224 if is_new:
225 m.config.SetString('repo.archive', 'true')
226 else:
227 print('fatal: --archive is only supported when initializing a new '
228 'workspace.', file=sys.stderr)
229 print('Either delete the .repo folder in this workspace, or initialize '
230 'in another location.', file=sys.stderr)
231 sys.exit(1)
232
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800233 if opt.mirror:
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700234 if is_new:
235 m.config.SetString('repo.mirror', 'true')
236 else:
David Pursehouse25470982012-11-21 14:41:58 +0900237 print('fatal: --mirror is only supported when initializing a new '
238 'workspace.', file=sys.stderr)
239 print('Either delete the .repo folder in this workspace, or initialize '
240 'in another location.', file=sys.stderr)
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700241 sys.exit(1)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800242
Martin Kellye4e94d22017-03-21 16:05:12 -0700243 if opt.submodules:
244 m.config.SetString('repo.submodules', 'true')
245
Hu xiuyun9711a982015-12-11 11:16:41 +0800246 if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet,
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500247 clone_bundle=not opt.no_clone_bundle,
248 current_branch_only=opt.current_branch_only,
Martin Kellye4e94d22017-03-21 16:05:12 -0700249 no_tags=opt.no_tags, submodules=opt.submodules):
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700250 r = m.GetRemote(m.remote.name)
Sarah Owenscecd1d82012-11-01 22:59:27 -0700251 print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr)
Doug Anderson2630dd92011-04-07 13:36:30 -0700252
253 # Better delete the manifest git dir if we created it; otherwise next
254 # time (when user fixes problems) we won't go through the "is_new" logic.
255 if is_new:
Renaud Paquaya65adf72016-11-03 10:37:53 -0700256 platform_utils.rmtree(m.gitdir)
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700257 sys.exit(1)
258
Florian Vallee5d016502012-06-07 17:19:26 +0200259 if opt.manifest_branch:
Martin Kelly224a31a2017-07-10 14:46:25 -0700260 m.MetaBranchSwitch(submodules=opt.submodules)
Florian Vallee5d016502012-06-07 17:19:26 +0200261
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700262 syncbuf = SyncBuffer(m.config)
Martin Kellye4e94d22017-03-21 16:05:12 -0700263 m.Sync_LocalHalf(syncbuf, submodules=opt.submodules)
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700264 syncbuf.Finish()
265
Shawn O. Pearcedf018832009-03-17 08:15:27 -0700266 if is_new or m.CurrentBranch is None:
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700267 if not m.StartBranch('default'):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700268 print('fatal: cannot create default in manifest', file=sys.stderr)
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700269 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700270
271 def _LinkManifest(self, name):
272 if not name:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700273 print('fatal: manifest name (-m) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700274 sys.exit(1)
275
276 try:
277 self.manifest.Link(name)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700278 except ManifestParseError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700279 print("fatal: manifest '%s' not available" % name, file=sys.stderr)
280 print('fatal: %s' % str(e), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700281 sys.exit(1)
282
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700283 def _Prompt(self, prompt, value):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700284 sys.stdout.write('%-10s [%s]: ' % (prompt, value))
285 a = sys.stdin.readline().strip()
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700286 if a == '':
287 return value
288 return a
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700289
Victor Boivie841be342011-04-05 11:31:10 +0200290 def _ShouldConfigureUser(self):
291 gc = self.manifest.globalConfig
292 mp = self.manifest.manifestProject
293
294 # If we don't have local settings, get from global.
295 if not mp.config.Has('user.name') or not mp.config.Has('user.email'):
296 if not gc.Has('user.name') or not gc.Has('user.email'):
297 return True
298
299 mp.config.SetString('user.name', gc.GetString('user.name'))
300 mp.config.SetString('user.email', gc.GetString('user.email'))
301
Sarah Owenscecd1d82012-11-01 22:59:27 -0700302 print()
303 print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'),
304 mp.config.GetString('user.email')))
305 print('If you want to change this, please re-run \'repo init\' with --config-name')
Victor Boivie841be342011-04-05 11:31:10 +0200306 return False
307
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700308 def _ConfigureUser(self):
309 mp = self.manifest.manifestProject
310
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700311 while True:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700312 print()
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700313 name = self._Prompt('Your Name', mp.UserName)
314 email = self._Prompt('Your Email', mp.UserEmail)
315
Sarah Owenscecd1d82012-11-01 22:59:27 -0700316 print()
317 print('Your identity is: %s <%s>' % (name, email))
Mike Frysingere9311272011-08-11 15:46:43 -0400318 sys.stdout.write('is this correct [y/N]? ')
David Pursehousefc241242012-11-14 09:19:39 +0900319 a = sys.stdin.readline().strip().lower()
Nico Sallembien6d7508b2010-04-01 11:03:53 -0700320 if a in ('yes', 'y', 't', 'true'):
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700321 break
322
323 if name != mp.UserName:
324 mp.config.SetString('user.name', name)
325 if email != mp.UserEmail:
326 mp.config.SetString('user.email', email)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700327
328 def _HasColorSet(self, gc):
329 for n in ['ui', 'diff', 'status']:
330 if gc.Has('color.%s' % n):
331 return True
332 return False
333
334 def _ConfigureColor(self):
335 gc = self.manifest.globalConfig
336 if self._HasColorSet(gc):
337 return
338
339 class _Test(Coloring):
340 def __init__(self):
341 Coloring.__init__(self, gc, 'test color display')
342 self._on = True
343 out = _Test()
344
Sarah Owenscecd1d82012-11-01 22:59:27 -0700345 print()
346 print("Testing colorized output (for 'repo diff', 'repo status'):")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700347
David Pursehouse8f62fb72012-11-14 12:09:38 +0900348 for c in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700349 out.write(' ')
350 out.printer(fg=c)(' %-6s ', c)
351 out.write(' ')
352 out.printer(fg='white', bg='black')(' %s ' % 'white')
353 out.nl()
354
David Pursehouse8f62fb72012-11-14 12:09:38 +0900355 for c in ['bold', 'dim', 'ul', 'reverse']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700356 out.write(' ')
357 out.printer(fg='black', attr=c)(' %-6s ', c)
358 out.nl()
359
Mike Frysingere9311272011-08-11 15:46:43 -0400360 sys.stdout.write('Enable color display in this user account (y/N)? ')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700361 a = sys.stdin.readline().strip().lower()
362 if a in ('y', 'yes', 't', 'true', 'on'):
363 gc.SetString('color.ui', 'auto')
364
Doug Anderson30d45292011-05-04 15:01:04 -0700365 def _ConfigureDepth(self, opt):
366 """Configure the depth we'll sync down.
367
368 Args:
369 opt: Options from optparse. We care about opt.depth.
370 """
371 # Opt.depth will be non-None if user actually passed --depth to repo init.
372 if opt.depth is not None:
373 if opt.depth > 0:
374 # Positive values will set the depth.
375 depth = str(opt.depth)
376 else:
377 # Negative numbers will clear the depth; passing None to SetString
378 # will do that.
379 depth = None
380
381 # We store the depth in the main manifest project.
382 self.manifest.manifestProject.config.SetString('repo.depth', depth)
383
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800384 def _DisplayResult(self):
385 if self.manifest.IsMirror:
386 init_type = 'mirror '
387 else:
388 init_type = ''
389
Sarah Owenscecd1d82012-11-01 22:59:27 -0700390 print()
391 print('repo %shas been initialized in %s'
392 % (init_type, self.manifest.topdir))
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800393
394 current_dir = os.getcwd()
395 if current_dir != self.manifest.topdir:
David Pursehouse35765962013-01-29 09:49:48 +0900396 print('If this is not the directory in which you want to initialize '
Sarah Owenscecd1d82012-11-01 22:59:27 -0700397 'repo, please run:')
398 print(' rm -r %s/.repo' % self.manifest.topdir)
399 print('and try again.')
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800400
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700401 def Execute(self, opt, args):
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -0700402 git_require(MIN_GIT_VERSION, fail=True)
Victor Boivie297e7c62012-10-05 14:50:05 +0200403
404 if opt.reference:
Samuel Hollandbaa00092018-01-22 10:57:29 -0600405 opt.reference = os.path.expanduser(opt.reference)
Victor Boivie297e7c62012-10-05 14:50:05 +0200406
Julien Campergue335f5ef2013-10-16 11:02:35 +0200407 # Check this here, else manifest will be tagged "not new" and init won't be
408 # possible anymore without removing the .repo/manifests directory.
409 if opt.archive and opt.mirror:
410 print('fatal: --mirror and --archive cannot be used together.',
411 file=sys.stderr)
412 sys.exit(1)
413
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700414 self._SyncManifest(opt)
415 self._LinkManifest(opt.manifest_name)
416
Shawn O. Pearce8630f392009-03-19 10:17:12 -0700417 if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror:
Victor Boivie841be342011-04-05 11:31:10 +0200418 if opt.config_name or self._ShouldConfigureUser():
419 self._ConfigureUser()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700420 self._ConfigureColor()
421
Doug Anderson30d45292011-05-04 15:01:04 -0700422 self._ConfigureDepth(opt)
423
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800424 self._DisplayResult()