blob: 6c8b1ddc364cd48bdba7f7e6dd73677c46617849 [file] [log] [blame]
Mike Frysingerf6013762019-06-13 02:30:51 -04001# -*- coding:utf-8 -*-
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002#
3# Copyright (C) 2008 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Sarah Owenscecd1d82012-11-01 22:59:27 -070017from __future__ import print_function
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070018import os
Conley Owensd21720d2012-04-16 11:02:21 -070019import platform
Conley Owens971de8e2012-04-16 10:36:08 -070020import re
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070021import sys
David Pursehouse59bbb582013-05-17 10:49:33 +090022
23from pyversion import is_python3
24if is_python3():
Victor Boivie2b30e3a2012-10-05 12:37:58 +020025 import urllib.parse
David Pursehouse59bbb582013-05-17 10:49:33 +090026else:
Victor Boivie2b30e3a2012-10-05 12:37:58 +020027 import imp
28 import urlparse
29 urllib = imp.new_module('urllib')
Anthony King7993f3c2015-06-03 17:21:56 +010030 urllib.parse = urlparse
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070031
32from color import Coloring
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080033from command import InteractiveCommand, MirrorSafeCommand
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070034from error import ManifestParseError
Jonathan Nieder93719792015-03-17 11:29:58 -070035from project import SyncBuffer
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -070036from git_config import GitConfig
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -070037from git_command import git_require, MIN_GIT_VERSION
Renaud Paquaya65adf72016-11-03 10:37:53 -070038import platform_utils
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070039
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080040class Init(InteractiveCommand, MirrorSafeCommand):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070041 common = True
42 helpSummary = "Initialize repo in the current directory"
43 helpUsage = """
44%prog [options]
45"""
46 helpDescription = """
47The '%prog' command is run once to install and initialize repo.
48The latest repo source code and manifest collection is downloaded
49from the server and is installed in the .repo/ directory in the
50current working directory.
51
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070052The optional -b argument can be used to select the manifest branch
53to checkout and use. If no branch is specified, master is assumed.
54
55The optional -m argument can be used to specify an alternate manifest
56to be used. If no manifest is specified, the manifest default.xml
57will be used.
58
Shawn O. Pearce88443382010-10-08 10:02:09 +020059The --reference option can be used to point to a directory that
60has the content of a --mirror sync. This will make the working
61directory use as much data as possible from the local reference
62directory when fetching from the server. This will make the sync
63go a lot faster by reducing data traffic on the network.
64
Nikolai Merinov09f0abb2018-10-19 15:07:05 +050065The --dissociate option can be used to borrow the objects from
66the directory specified with the --reference option only to reduce
67network transfer, and stop borrowing from them after a first clone
68is made by making necessary local copies of borrowed objects.
69
Hu xiuyun9711a982015-12-11 11:16:41 +080070The --no-clone-bundle option disables any attempt to use
71$URL/clone.bundle to bootstrap a new Git repository from a
72resumeable bundle file on a content delivery network. This
73may be necessary if there are problems with the local Python
74HTTP client or proxy configuration, but the Git binary works.
Shawn O. Pearce88443382010-10-08 10:02:09 +020075
Mike Frysingerb8f7bb02018-10-10 01:05:11 -040076# Switching Manifest Branches
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070077
78To switch to another manifest branch, `repo init -b otherbranch`
79may be used in an existing client. However, as this only updates the
80manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary
81to update the working directory files.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070082"""
83
84 def _Options(self, p):
85 # Logging
86 g = p.add_option_group('Logging options')
87 g.add_option('-q', '--quiet',
88 dest="quiet", action="store_true", default=False,
89 help="be quiet")
90
91 # Manifest
92 g = p.add_option_group('Manifest options')
93 g.add_option('-u', '--manifest-url',
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -080094 dest='manifest_url',
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070095 help='manifest repository location', metavar='URL')
96 g.add_option('-b', '--manifest-branch',
97 dest='manifest_branch',
98 help='manifest branch or revision', metavar='REVISION')
Ereth McKnight-MacNeil12ee5442018-12-19 21:28:35 -080099 g.add_option('--current-branch',
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500100 dest='current_branch_only', action='store_true',
101 help='fetch only current manifest branch from server')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700102 g.add_option('-m', '--manifest-name',
103 dest='manifest_name', default='default.xml',
104 help='initial manifest file', metavar='NAME.xml')
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800105 g.add_option('--mirror',
106 dest='mirror', action='store_true',
David Pursehouse3d07da82012-08-15 14:22:08 +0900107 help='create a replica of the remote repositories '
108 'rather than a client working directory')
Shawn O. Pearce88443382010-10-08 10:02:09 +0200109 g.add_option('--reference',
110 dest='reference',
111 help='location of mirror directory', metavar='DIR')
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500112 g.add_option('--dissociate',
113 dest='dissociate', action='store_true',
114 help='dissociate from reference mirrors after clone')
Doug Anderson30d45292011-05-04 15:01:04 -0700115 g.add_option('--depth', type='int', default=None,
116 dest='depth',
117 help='create a shallow clone with given depth; see git clone')
Julien Campergue335f5ef2013-10-16 11:02:35 +0200118 g.add_option('--archive',
119 dest='archive', action='store_true',
120 help='checkout an archive instead of a git repository for '
121 'each project. See git archive.')
Martin Kellye4e94d22017-03-21 16:05:12 -0700122 g.add_option('--submodules',
123 dest='submodules', action='store_true',
124 help='sync any submodules associated with the manifest repo')
Colin Cross5acde752012-03-28 20:15:45 -0700125 g.add_option('-g', '--groups',
David Holmer0a1c6a12012-11-14 19:19:00 -0500126 dest='groups', default='default',
127 help='restrict manifest projects to ones with specified '
128 'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]',
Colin Cross5acde752012-03-28 20:15:45 -0700129 metavar='GROUP')
Conley Owensd21720d2012-04-16 11:02:21 -0700130 g.add_option('-p', '--platform',
131 dest='platform', default='auto',
Conley Owensbb1b5f52012-08-13 13:11:18 -0700132 help='restrict manifest projects to ones with a specified '
Conley Owensd21720d2012-04-16 11:02:21 -0700133 'platform group [auto|all|none|linux|darwin|...]',
134 metavar='PLATFORM')
Hu xiuyun9711a982015-12-11 11:16:41 +0800135 g.add_option('--no-clone-bundle',
136 dest='no_clone_bundle', action='store_true',
137 help='disable use of /clone.bundle on HTTP/HTTPS')
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500138 g.add_option('--no-tags',
139 dest='no_tags', action='store_true',
140 help="don't fetch tags in the manifest")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700141
142 # Tool
Shawn O. Pearcefd89b672009-04-18 11:28:57 -0700143 g = p.add_option_group('repo Version options')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700144 g.add_option('--repo-url',
145 dest='repo_url',
146 help='repo repository location', metavar='URL')
147 g.add_option('--repo-branch',
148 dest='repo_branch',
149 help='repo branch or revision', metavar='REVISION')
150 g.add_option('--no-repo-verify',
151 dest='no_repo_verify', action='store_true',
152 help='do not verify repo source code')
153
Victor Boivie841be342011-04-05 11:31:10 +0200154 # Other
155 g = p.add_option_group('Other options')
156 g.add_option('--config-name',
157 dest='config_name', action="store_true", default=False,
158 help='Always prompt for name/e-mail')
159
David Pursehouse3f5ea0b2012-11-17 03:13:09 +0900160 def _RegisteredEnvironmentOptions(self):
161 return {'REPO_MANIFEST_URL': 'manifest_url',
162 'REPO_MIRROR_LOCATION': 'reference'}
163
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700164 def _SyncManifest(self, opt):
165 m = self.manifest.manifestProject
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700166 is_new = not m.Exists
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700167
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700168 if is_new:
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800169 if not opt.manifest_url:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700170 print('fatal: manifest url (-u) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700171 sys.exit(1)
172
173 if not opt.quiet:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700174 print('Get %s' % GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),
175 file=sys.stderr)
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200176
177 # The manifest project object doesn't keep track of the path on the
178 # server where this git is located, so let's save that here.
179 mirrored_manifest_git = None
180 if opt.reference:
Anthony King7993f3c2015-06-03 17:21:56 +0100181 manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:]
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200182 mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path)
183 if not mirrored_manifest_git.endswith(".git"):
184 mirrored_manifest_git += ".git"
185 if not os.path.exists(mirrored_manifest_git):
Samuel Holland5f0e57d2018-01-22 11:00:24 -0600186 mirrored_manifest_git = os.path.join(opt.reference,
187 '.repo/manifests.git')
Victor Boivie2b30e3a2012-10-05 12:37:58 +0200188
189 m._InitGitDir(mirror_git=mirrored_manifest_git)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700190
191 if opt.manifest_branch:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700192 m.revisionExpr = opt.manifest_branch
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700193 else:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700194 m.revisionExpr = 'refs/heads/master'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700195 else:
196 if opt.manifest_branch:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700197 m.revisionExpr = opt.manifest_branch
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700198 else:
199 m.PreSync()
200
Nasser Grainawid92464e2019-05-21 10:41:35 -0600201 self._ConfigureDepth(opt)
202
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700203 if opt.manifest_url:
204 r = m.GetRemote(m.remote.name)
205 r.url = opt.manifest_url
206 r.ResetFetch()
207 r.Save()
208
David Pursehouse1d947b32012-10-25 12:23:11 +0900209 groups = re.split(r'[,\s]+', opt.groups)
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700210 all_platforms = ['linux', 'darwin', 'windows']
Conley Owensd21720d2012-04-16 11:02:21 -0700211 platformize = lambda x: 'platform-' + x
212 if opt.platform == 'auto':
213 if (not opt.mirror and
214 not m.config.GetString('repo.mirror') == 'true'):
215 groups.append(platformize(platform.system().lower()))
216 elif opt.platform == 'all':
Colin Cross54657272012-04-23 13:39:48 -0700217 groups.extend(map(platformize, all_platforms))
Conley Owensd21720d2012-04-16 11:02:21 -0700218 elif opt.platform in all_platforms:
Pascal Muetschardc2a64dd2015-10-22 13:26:36 -0700219 groups.append(platformize(opt.platform))
Conley Owensd21720d2012-04-16 11:02:21 -0700220 elif opt.platform != 'none':
Sarah Owenscecd1d82012-11-01 22:59:27 -0700221 print('fatal: invalid platform flag', file=sys.stderr)
Conley Owensd21720d2012-04-16 11:02:21 -0700222 sys.exit(1)
223
Conley Owens971de8e2012-04-16 10:36:08 -0700224 groups = [x for x in groups if x]
225 groupstr = ','.join(groups)
David Holmer0a1c6a12012-11-14 19:19:00 -0500226 if opt.platform == 'auto' and groupstr == 'default,platform-' + platform.system().lower():
Conley Owens971de8e2012-04-16 10:36:08 -0700227 groupstr = None
228 m.config.SetString('manifest.groups', groupstr)
Colin Cross5acde752012-03-28 20:15:45 -0700229
Shawn O. Pearce88443382010-10-08 10:02:09 +0200230 if opt.reference:
231 m.config.SetString('repo.reference', opt.reference)
232
Nikolai Merinov09f0abb2018-10-19 15:07:05 +0500233 if opt.dissociate:
234 m.config.SetString('repo.dissociate', 'true')
235
Julien Campergue335f5ef2013-10-16 11:02:35 +0200236 if opt.archive:
237 if is_new:
238 m.config.SetString('repo.archive', 'true')
239 else:
240 print('fatal: --archive is only supported when initializing a new '
241 'workspace.', file=sys.stderr)
242 print('Either delete the .repo folder in this workspace, or initialize '
243 'in another location.', file=sys.stderr)
244 sys.exit(1)
245
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800246 if opt.mirror:
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700247 if is_new:
248 m.config.SetString('repo.mirror', 'true')
249 else:
David Pursehouse25470982012-11-21 14:41:58 +0900250 print('fatal: --mirror is only supported when initializing a new '
251 'workspace.', file=sys.stderr)
252 print('Either delete the .repo folder in this workspace, or initialize '
253 'in another location.', file=sys.stderr)
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700254 sys.exit(1)
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800255
Martin Kellye4e94d22017-03-21 16:05:12 -0700256 if opt.submodules:
257 m.config.SetString('repo.submodules', 'true')
258
Hu xiuyun9711a982015-12-11 11:16:41 +0800259 if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet,
Naseer Ahmedf4dda9a2016-12-01 18:49:54 -0500260 clone_bundle=not opt.no_clone_bundle,
261 current_branch_only=opt.current_branch_only,
Martin Kellye4e94d22017-03-21 16:05:12 -0700262 no_tags=opt.no_tags, submodules=opt.submodules):
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700263 r = m.GetRemote(m.remote.name)
Sarah Owenscecd1d82012-11-01 22:59:27 -0700264 print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr)
Doug Anderson2630dd92011-04-07 13:36:30 -0700265
266 # Better delete the manifest git dir if we created it; otherwise next
267 # time (when user fixes problems) we won't go through the "is_new" logic.
268 if is_new:
Renaud Paquaya65adf72016-11-03 10:37:53 -0700269 platform_utils.rmtree(m.gitdir)
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700270 sys.exit(1)
271
Florian Vallee5d016502012-06-07 17:19:26 +0200272 if opt.manifest_branch:
Martin Kelly224a31a2017-07-10 14:46:25 -0700273 m.MetaBranchSwitch(submodules=opt.submodules)
Florian Vallee5d016502012-06-07 17:19:26 +0200274
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700275 syncbuf = SyncBuffer(m.config)
Martin Kellye4e94d22017-03-21 16:05:12 -0700276 m.Sync_LocalHalf(syncbuf, submodules=opt.submodules)
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700277 syncbuf.Finish()
278
Shawn O. Pearcedf018832009-03-17 08:15:27 -0700279 if is_new or m.CurrentBranch is None:
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700280 if not m.StartBranch('default'):
Sarah Owenscecd1d82012-11-01 22:59:27 -0700281 print('fatal: cannot create default in manifest', file=sys.stderr)
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700282 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700283
284 def _LinkManifest(self, name):
285 if not name:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700286 print('fatal: manifest name (-m) is required.', file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700287 sys.exit(1)
288
289 try:
290 self.manifest.Link(name)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700291 except ManifestParseError as e:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700292 print("fatal: manifest '%s' not available" % name, file=sys.stderr)
293 print('fatal: %s' % str(e), file=sys.stderr)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700294 sys.exit(1)
295
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700296 def _Prompt(self, prompt, value):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700297 sys.stdout.write('%-10s [%s]: ' % (prompt, value))
298 a = sys.stdin.readline().strip()
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700299 if a == '':
300 return value
301 return a
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700302
Victor Boivie841be342011-04-05 11:31:10 +0200303 def _ShouldConfigureUser(self):
304 gc = self.manifest.globalConfig
305 mp = self.manifest.manifestProject
306
307 # If we don't have local settings, get from global.
308 if not mp.config.Has('user.name') or not mp.config.Has('user.email'):
309 if not gc.Has('user.name') or not gc.Has('user.email'):
310 return True
311
312 mp.config.SetString('user.name', gc.GetString('user.name'))
313 mp.config.SetString('user.email', gc.GetString('user.email'))
314
Sarah Owenscecd1d82012-11-01 22:59:27 -0700315 print()
316 print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'),
317 mp.config.GetString('user.email')))
318 print('If you want to change this, please re-run \'repo init\' with --config-name')
Victor Boivie841be342011-04-05 11:31:10 +0200319 return False
320
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700321 def _ConfigureUser(self):
322 mp = self.manifest.manifestProject
323
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700324 while True:
Sarah Owenscecd1d82012-11-01 22:59:27 -0700325 print()
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700326 name = self._Prompt('Your Name', mp.UserName)
327 email = self._Prompt('Your Email', mp.UserEmail)
328
Sarah Owenscecd1d82012-11-01 22:59:27 -0700329 print()
330 print('Your identity is: %s <%s>' % (name, email))
Mike Frysingere9311272011-08-11 15:46:43 -0400331 sys.stdout.write('is this correct [y/N]? ')
David Pursehousefc241242012-11-14 09:19:39 +0900332 a = sys.stdin.readline().strip().lower()
Nico Sallembien6d7508b2010-04-01 11:03:53 -0700333 if a in ('yes', 'y', 't', 'true'):
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700334 break
335
336 if name != mp.UserName:
337 mp.config.SetString('user.name', name)
338 if email != mp.UserEmail:
339 mp.config.SetString('user.email', email)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700340
341 def _HasColorSet(self, gc):
342 for n in ['ui', 'diff', 'status']:
343 if gc.Has('color.%s' % n):
344 return True
345 return False
346
347 def _ConfigureColor(self):
348 gc = self.manifest.globalConfig
349 if self._HasColorSet(gc):
350 return
351
352 class _Test(Coloring):
353 def __init__(self):
354 Coloring.__init__(self, gc, 'test color display')
355 self._on = True
356 out = _Test()
357
Sarah Owenscecd1d82012-11-01 22:59:27 -0700358 print()
359 print("Testing colorized output (for 'repo diff', 'repo status'):")
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700360
David Pursehouse8f62fb72012-11-14 12:09:38 +0900361 for c in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700362 out.write(' ')
363 out.printer(fg=c)(' %-6s ', c)
364 out.write(' ')
365 out.printer(fg='white', bg='black')(' %s ' % 'white')
366 out.nl()
367
David Pursehouse8f62fb72012-11-14 12:09:38 +0900368 for c in ['bold', 'dim', 'ul', 'reverse']:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700369 out.write(' ')
370 out.printer(fg='black', attr=c)(' %-6s ', c)
371 out.nl()
372
Mike Frysingere9311272011-08-11 15:46:43 -0400373 sys.stdout.write('Enable color display in this user account (y/N)? ')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700374 a = sys.stdin.readline().strip().lower()
375 if a in ('y', 'yes', 't', 'true', 'on'):
376 gc.SetString('color.ui', 'auto')
377
Doug Anderson30d45292011-05-04 15:01:04 -0700378 def _ConfigureDepth(self, opt):
379 """Configure the depth we'll sync down.
380
381 Args:
382 opt: Options from optparse. We care about opt.depth.
383 """
384 # Opt.depth will be non-None if user actually passed --depth to repo init.
385 if opt.depth is not None:
386 if opt.depth > 0:
387 # Positive values will set the depth.
388 depth = str(opt.depth)
389 else:
390 # Negative numbers will clear the depth; passing None to SetString
391 # will do that.
392 depth = None
393
394 # We store the depth in the main manifest project.
395 self.manifest.manifestProject.config.SetString('repo.depth', depth)
396
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800397 def _DisplayResult(self):
398 if self.manifest.IsMirror:
399 init_type = 'mirror '
400 else:
401 init_type = ''
402
Sarah Owenscecd1d82012-11-01 22:59:27 -0700403 print()
404 print('repo %shas been initialized in %s'
405 % (init_type, self.manifest.topdir))
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800406
407 current_dir = os.getcwd()
408 if current_dir != self.manifest.topdir:
David Pursehouse35765962013-01-29 09:49:48 +0900409 print('If this is not the directory in which you want to initialize '
Sarah Owenscecd1d82012-11-01 22:59:27 -0700410 'repo, please run:')
411 print(' rm -r %s/.repo' % self.manifest.topdir)
412 print('and try again.')
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800413
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700414 def Execute(self, opt, args):
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -0700415 git_require(MIN_GIT_VERSION, fail=True)
Victor Boivie297e7c62012-10-05 14:50:05 +0200416
417 if opt.reference:
Samuel Hollandbaa00092018-01-22 10:57:29 -0600418 opt.reference = os.path.expanduser(opt.reference)
Victor Boivie297e7c62012-10-05 14:50:05 +0200419
Julien Campergue335f5ef2013-10-16 11:02:35 +0200420 # Check this here, else manifest will be tagged "not new" and init won't be
421 # possible anymore without removing the .repo/manifests directory.
422 if opt.archive and opt.mirror:
423 print('fatal: --mirror and --archive cannot be used together.',
424 file=sys.stderr)
425 sys.exit(1)
426
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700427 self._SyncManifest(opt)
428 self._LinkManifest(opt.manifest_name)
429
Shawn O. Pearce8630f392009-03-19 10:17:12 -0700430 if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror:
Victor Boivie841be342011-04-05 11:31:10 +0200431 if opt.config_name or self._ShouldConfigureUser():
432 self._ConfigureUser()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700433 self._ConfigureColor()
434
Yang Zhenhui75cc3532012-10-23 15:41:54 +0800435 self._DisplayResult()