The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | # Copyright (C) 2008 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | import os |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 16 | import platform |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 17 | import re |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 18 | import sys |
Mike Frysinger | acf63b2 | 2019-06-13 02:24:21 -0400 | [diff] [blame] | 19 | import urllib.parse |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 20 | |
| 21 | from color import Coloring |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 22 | from command import InteractiveCommand, MirrorSafeCommand |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 23 | from error import ManifestParseError |
Jonathan Nieder | 9371979 | 2015-03-17 11:29:58 -0700 | [diff] [blame] | 24 | from project import SyncBuffer |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 25 | from git_config import GitConfig |
Mike Frysinger | 82caef6 | 2020-02-11 18:51:08 -0500 | [diff] [blame] | 26 | from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 27 | import fetch |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 28 | import git_superproject |
Renaud Paquay | a65adf7 | 2016-11-03 10:37:53 -0700 | [diff] [blame] | 29 | import platform_utils |
Mike Frysinger | 3599cc3 | 2020-02-29 02:53:41 -0500 | [diff] [blame] | 30 | from wrapper import Wrapper |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 31 | |
David Pursehouse | 819827a | 2020-02-12 15:20:19 +0900 | [diff] [blame] | 32 | |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 33 | class Init(InteractiveCommand, MirrorSafeCommand): |
Mike Frysinger | 4f21054 | 2021-06-14 16:05:19 -0400 | [diff] [blame] | 34 | COMMON = True |
LaMont Jones | cc879a9 | 2021-11-18 22:40:18 +0000 | [diff] [blame^] | 35 | MULTI_MANIFEST_SUPPORT = False |
Mike Frysinger | 401c6f0 | 2021-02-18 15:20:15 -0500 | [diff] [blame] | 36 | helpSummary = "Initialize a repo client checkout in the current directory" |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 37 | helpUsage = """ |
Mike Frysinger | 401c6f0 | 2021-02-18 15:20:15 -0500 | [diff] [blame] | 38 | %prog [options] [manifest url] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 39 | """ |
| 40 | helpDescription = """ |
| 41 | The '%prog' command is run once to install and initialize repo. |
| 42 | The latest repo source code and manifest collection is downloaded |
| 43 | from the server and is installed in the .repo/ directory in the |
| 44 | current working directory. |
| 45 | |
Mike Frysinger | 401c6f0 | 2021-02-18 15:20:15 -0500 | [diff] [blame] | 46 | When creating a new checkout, the manifest URL is the only required setting. |
| 47 | It may be specified using the --manifest-url option, or as the first optional |
| 48 | argument. |
| 49 | |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 50 | The optional -b argument can be used to select the manifest branch |
Mike Frysinger | 50a81de | 2020-09-06 15:51:21 -0400 | [diff] [blame] | 51 | to checkout and use. If no branch is specified, the remote's default |
Mike Frysinger | 23882b3 | 2021-02-23 15:43:07 -0500 | [diff] [blame] | 52 | branch is used. This is equivalent to using -b HEAD. |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 53 | |
| 54 | The optional -m argument can be used to specify an alternate manifest |
| 55 | to be used. If no manifest is specified, the manifest default.xml |
| 56 | will be used. |
| 57 | |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 58 | If the --standalone-manifest argument is set, the manifest will be downloaded |
| 59 | directly from the specified --manifest-url as a static file (rather than |
| 60 | setting up a manifest git checkout). With --standalone-manifest, the manifest |
| 61 | will be fully static and will not be re-downloaded during subsesquent |
| 62 | `repo init` and `repo sync` calls. |
| 63 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 64 | The --reference option can be used to point to a directory that |
| 65 | has the content of a --mirror sync. This will make the working |
| 66 | directory use as much data as possible from the local reference |
| 67 | directory when fetching from the server. This will make the sync |
| 68 | go a lot faster by reducing data traffic on the network. |
| 69 | |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 70 | The --dissociate option can be used to borrow the objects from |
| 71 | the directory specified with the --reference option only to reduce |
| 72 | network transfer, and stop borrowing from them after a first clone |
| 73 | is made by making necessary local copies of borrowed objects. |
| 74 | |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame] | 75 | The --no-clone-bundle option disables any attempt to use |
| 76 | $URL/clone.bundle to bootstrap a new Git repository from a |
| 77 | resumeable bundle file on a content delivery network. This |
| 78 | may be necessary if there are problems with the local Python |
| 79 | HTTP client or proxy configuration, but the Git binary works. |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 80 | |
Mike Frysinger | b8f7bb0 | 2018-10-10 01:05:11 -0400 | [diff] [blame] | 81 | # Switching Manifest Branches |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 82 | |
| 83 | To switch to another manifest branch, `repo init -b otherbranch` |
| 84 | may be used in an existing client. However, as this only updates the |
| 85 | manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary |
| 86 | to update the working directory files. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 87 | """ |
| 88 | |
Mike Frysinger | 9180a07 | 2021-04-13 14:57:40 -0400 | [diff] [blame] | 89 | def _CommonOptions(self, p): |
| 90 | """Disable due to re-use of Wrapper().""" |
| 91 | |
Mike Frysinger | 66098f7 | 2020-02-05 00:01:59 -0500 | [diff] [blame] | 92 | def _Options(self, p, gitc_init=False): |
Mike Frysinger | 9a734a3 | 2021-04-08 19:14:15 -0400 | [diff] [blame] | 93 | Wrapper().InitParser(p, gitc_init=gitc_init) |
LaMont Jones | cc879a9 | 2021-11-18 22:40:18 +0000 | [diff] [blame^] | 94 | m = p.add_option_group('Multi-manifest') |
| 95 | m.add_option('--outer-manifest', action='store_true', |
| 96 | help='operate starting at the outermost manifest') |
| 97 | m.add_option('--no-outer-manifest', dest='outer_manifest', |
| 98 | action='store_false', default=None, |
| 99 | help='do not operate on outer manifests') |
| 100 | m.add_option('--this-manifest-only', action='store_true', default=None, |
| 101 | help='only operate on this (sub)manifest') |
| 102 | m.add_option('--no-this-manifest-only', '--all-manifests', |
| 103 | dest='this_manifest_only', action='store_false', |
| 104 | help='operate on this manifest and its submanifests') |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 105 | |
David Pursehouse | 3f5ea0b | 2012-11-17 03:13:09 +0900 | [diff] [blame] | 106 | def _RegisteredEnvironmentOptions(self): |
| 107 | return {'REPO_MANIFEST_URL': 'manifest_url', |
| 108 | 'REPO_MIRROR_LOCATION': 'reference'} |
| 109 | |
Raman Tenneti | ef99ec0 | 2021-03-04 10:29:40 -0800 | [diff] [blame] | 110 | def _CloneSuperproject(self, opt): |
| 111 | """Clone the superproject based on the superproject's url and branch. |
| 112 | |
| 113 | Args: |
| 114 | opt: Program options returned from optparse. See _Options(). |
| 115 | """ |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 116 | superproject = git_superproject.Superproject(self.manifest, |
Raman Tenneti | ef99ec0 | 2021-03-04 10:29:40 -0800 | [diff] [blame] | 117 | self.repodir, |
Raman Tenneti | 784e16f | 2021-06-11 17:29:45 -0700 | [diff] [blame] | 118 | self.git_event_log, |
Raman Tenneti | ef99ec0 | 2021-03-04 10:29:40 -0800 | [diff] [blame] | 119 | quiet=opt.quiet) |
Raman Tenneti | 784e16f | 2021-06-11 17:29:45 -0700 | [diff] [blame] | 120 | sync_result = superproject.Sync() |
| 121 | if not sync_result.success: |
Raman Tenneti | 8db30d6 | 2021-07-06 21:30:06 -0700 | [diff] [blame] | 122 | print('warning: git update of superproject failed, repo sync will not ' |
| 123 | 'use superproject to fetch source; while this error is not fatal, ' |
| 124 | 'and you can continue to run repo sync, please run repo init with ' |
| 125 | 'the --no-use-superproject option to stop seeing this warning', |
| 126 | file=sys.stderr) |
| 127 | if sync_result.fatal and opt.use_superproject is not None: |
Raman Tenneti | 784e16f | 2021-06-11 17:29:45 -0700 | [diff] [blame] | 128 | sys.exit(1) |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 129 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 130 | def _SyncManifest(self, opt): |
| 131 | m = self.manifest.manifestProject |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 132 | is_new = not m.Exists |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 133 | |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 134 | # If repo has already been initialized, we take -u with the absence of |
| 135 | # --standalone-manifest to mean "transition to a standard repo set up", |
| 136 | # which necessitates starting fresh. |
| 137 | # If --standalone-manifest is set, we always tear everything down and start |
| 138 | # anew. |
| 139 | if not is_new: |
| 140 | was_standalone_manifest = m.config.GetString('manifest.standalone') |
Jack Neus | 0f6f16e | 2021-10-11 18:14:35 +0000 | [diff] [blame] | 141 | if was_standalone_manifest and not opt.manifest_url: |
| 142 | print('fatal: repo was initialized with a standlone manifest, ' |
| 143 | 'cannot be re-initialized without --manifest-url/-u') |
| 144 | sys.exit(1) |
| 145 | |
Raman Tenneti | 4a478ed | 2021-11-17 18:38:24 -0800 | [diff] [blame] | 146 | if opt.standalone_manifest or (was_standalone_manifest and |
| 147 | opt.manifest_url): |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 148 | m.config.ClearCache() |
| 149 | if m.gitdir and os.path.exists(m.gitdir): |
| 150 | platform_utils.rmtree(m.gitdir) |
| 151 | if m.worktree and os.path.exists(m.worktree): |
| 152 | platform_utils.rmtree(m.worktree) |
| 153 | |
| 154 | is_new = not m.Exists |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 155 | if is_new: |
Shawn O. Pearce | 34fb20f | 2011-11-30 13:41:02 -0800 | [diff] [blame] | 156 | if not opt.manifest_url: |
Mike Frysinger | 401c6f0 | 2021-02-18 15:20:15 -0500 | [diff] [blame] | 157 | print('fatal: manifest url is required.', file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 158 | sys.exit(1) |
| 159 | |
| 160 | if not opt.quiet: |
Mike Frysinger | dcbfadf | 2020-02-22 00:04:39 -0500 | [diff] [blame] | 161 | print('Downloading manifest from %s' % |
| 162 | (GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),), |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 163 | file=sys.stderr) |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 164 | |
| 165 | # The manifest project object doesn't keep track of the path on the |
| 166 | # server where this git is located, so let's save that here. |
| 167 | mirrored_manifest_git = None |
| 168 | if opt.reference: |
Anthony King | 7993f3c | 2015-06-03 17:21:56 +0100 | [diff] [blame] | 169 | manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:] |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 170 | mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path) |
| 171 | if not mirrored_manifest_git.endswith(".git"): |
| 172 | mirrored_manifest_git += ".git" |
| 173 | if not os.path.exists(mirrored_manifest_git): |
Samuel Holland | 5f0e57d | 2018-01-22 11:00:24 -0600 | [diff] [blame] | 174 | mirrored_manifest_git = os.path.join(opt.reference, |
| 175 | '.repo/manifests.git') |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 176 | |
| 177 | m._InitGitDir(mirror_git=mirrored_manifest_git) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 178 | |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 179 | # If standalone_manifest is set, mark the project as "standalone" -- we'll |
| 180 | # still do much of the manifests.git set up, but will avoid actual syncs to |
| 181 | # a remote. |
| 182 | standalone_manifest = False |
| 183 | if opt.standalone_manifest: |
| 184 | standalone_manifest = True |
Jack Neus | 7649159 | 2021-10-11 17:20:39 +0000 | [diff] [blame] | 185 | m.config.SetString('manifest.standalone', opt.manifest_url) |
| 186 | elif not opt.manifest_url and not opt.manifest_branch: |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 187 | # If -u is set and --standalone-manifest is not, then we're not in |
| 188 | # standalone mode. Otherwise, use config to infer what we were in the last |
| 189 | # init. |
| 190 | standalone_manifest = bool(m.config.GetString('manifest.standalone')) |
Jack Neus | 7649159 | 2021-10-11 17:20:39 +0000 | [diff] [blame] | 191 | if not standalone_manifest: |
| 192 | m.config.SetString('manifest.standalone', None) |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 193 | |
Nasser Grainawi | d92464e | 2019-05-21 10:41:35 -0600 | [diff] [blame] | 194 | self._ConfigureDepth(opt) |
| 195 | |
Mike Frysinger | 50a81de | 2020-09-06 15:51:21 -0400 | [diff] [blame] | 196 | # Set the remote URL before the remote branch as we might need it below. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 197 | if opt.manifest_url: |
| 198 | r = m.GetRemote(m.remote.name) |
| 199 | r.url = opt.manifest_url |
| 200 | r.ResetFetch() |
| 201 | r.Save() |
| 202 | |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 203 | if not standalone_manifest: |
| 204 | if opt.manifest_branch: |
| 205 | if opt.manifest_branch == 'HEAD': |
| 206 | opt.manifest_branch = m.ResolveRemoteHead() |
| 207 | if opt.manifest_branch is None: |
| 208 | print('fatal: unable to resolve HEAD', file=sys.stderr) |
| 209 | sys.exit(1) |
| 210 | m.revisionExpr = opt.manifest_branch |
Mike Frysinger | 50a81de | 2020-09-06 15:51:21 -0400 | [diff] [blame] | 211 | else: |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 212 | if is_new: |
| 213 | default_branch = m.ResolveRemoteHead() |
| 214 | if default_branch is None: |
| 215 | # If the remote doesn't have HEAD configured, default to master. |
| 216 | default_branch = 'refs/heads/master' |
| 217 | m.revisionExpr = default_branch |
| 218 | else: |
| 219 | m.PreSync() |
Mike Frysinger | 50a81de | 2020-09-06 15:51:21 -0400 | [diff] [blame] | 220 | |
David Pursehouse | 1d947b3 | 2012-10-25 12:23:11 +0900 | [diff] [blame] | 221 | groups = re.split(r'[,\s]+', opt.groups) |
Pascal Muetschard | c2a64dd | 2015-10-22 13:26:36 -0700 | [diff] [blame] | 222 | all_platforms = ['linux', 'darwin', 'windows'] |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 223 | platformize = lambda x: 'platform-' + x |
| 224 | if opt.platform == 'auto': |
| 225 | if (not opt.mirror and |
David Pursehouse | abdf750 | 2020-02-12 14:58:39 +0900 | [diff] [blame] | 226 | not m.config.GetString('repo.mirror') == 'true'): |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 227 | groups.append(platformize(platform.system().lower())) |
| 228 | elif opt.platform == 'all': |
Colin Cross | 5465727 | 2012-04-23 13:39:48 -0700 | [diff] [blame] | 229 | groups.extend(map(platformize, all_platforms)) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 230 | elif opt.platform in all_platforms: |
Pascal Muetschard | c2a64dd | 2015-10-22 13:26:36 -0700 | [diff] [blame] | 231 | groups.append(platformize(opt.platform)) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 232 | elif opt.platform != 'none': |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 233 | print('fatal: invalid platform flag', file=sys.stderr) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 234 | sys.exit(1) |
| 235 | |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 236 | groups = [x for x in groups if x] |
| 237 | groupstr = ','.join(groups) |
Raman Tenneti | 080877e | 2021-03-09 15:19:06 -0800 | [diff] [blame] | 238 | if opt.platform == 'auto' and groupstr == self.manifest.GetDefaultGroupsStr(): |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 239 | groupstr = None |
| 240 | m.config.SetString('manifest.groups', groupstr) |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 241 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 242 | if opt.reference: |
| 243 | m.config.SetString('repo.reference', opt.reference) |
| 244 | |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 245 | if opt.dissociate: |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 246 | m.config.SetBoolean('repo.dissociate', opt.dissociate) |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 247 | |
Mike Frysinger | 979d5bd | 2020-02-09 02:28:34 -0500 | [diff] [blame] | 248 | if opt.worktree: |
| 249 | if opt.mirror: |
| 250 | print('fatal: --mirror and --worktree are incompatible', |
| 251 | file=sys.stderr) |
| 252 | sys.exit(1) |
| 253 | if opt.submodules: |
| 254 | print('fatal: --submodules and --worktree are incompatible', |
| 255 | file=sys.stderr) |
| 256 | sys.exit(1) |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 257 | m.config.SetBoolean('repo.worktree', opt.worktree) |
Mike Frysinger | 979d5bd | 2020-02-09 02:28:34 -0500 | [diff] [blame] | 258 | if is_new: |
| 259 | m.use_git_worktrees = True |
| 260 | print('warning: --worktree is experimental!', file=sys.stderr) |
| 261 | |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 262 | if opt.archive: |
| 263 | if is_new: |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 264 | m.config.SetBoolean('repo.archive', opt.archive) |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 265 | else: |
| 266 | print('fatal: --archive is only supported when initializing a new ' |
| 267 | 'workspace.', file=sys.stderr) |
| 268 | print('Either delete the .repo folder in this workspace, or initialize ' |
| 269 | 'in another location.', file=sys.stderr) |
| 270 | sys.exit(1) |
| 271 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 272 | if opt.mirror: |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 273 | if is_new: |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 274 | m.config.SetBoolean('repo.mirror', opt.mirror) |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 275 | else: |
David Pursehouse | 2547098 | 2012-11-21 14:41:58 +0900 | [diff] [blame] | 276 | print('fatal: --mirror is only supported when initializing a new ' |
| 277 | 'workspace.', file=sys.stderr) |
| 278 | print('Either delete the .repo folder in this workspace, or initialize ' |
| 279 | 'in another location.', file=sys.stderr) |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 280 | sys.exit(1) |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 281 | |
Raman Tenneti | 6a2f4fb | 2021-04-02 10:55:33 -0700 | [diff] [blame] | 282 | if opt.partial_clone is not None: |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 283 | if opt.mirror: |
| 284 | print('fatal: --mirror and --partial-clone are mutually exclusive', |
| 285 | file=sys.stderr) |
| 286 | sys.exit(1) |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 287 | m.config.SetBoolean('repo.partialclone', opt.partial_clone) |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 288 | if opt.clone_filter: |
| 289 | m.config.SetString('repo.clonefilter', opt.clone_filter) |
Raman Tenneti | 6a2f4fb | 2021-04-02 10:55:33 -0700 | [diff] [blame] | 290 | elif m.config.GetBoolean('repo.partialclone'): |
| 291 | opt.clone_filter = m.config.GetString('repo.clonefilter') |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 292 | else: |
| 293 | opt.clone_filter = None |
| 294 | |
Raman Tenneti | f32f243 | 2021-04-12 20:57:25 -0700 | [diff] [blame] | 295 | if opt.partial_clone_exclude is not None: |
| 296 | m.config.SetString('repo.partialcloneexclude', opt.partial_clone_exclude) |
| 297 | |
Xin Li | d79a4bc | 2020-05-20 16:03:45 -0700 | [diff] [blame] | 298 | if opt.clone_bundle is None: |
| 299 | opt.clone_bundle = False if opt.partial_clone else True |
| 300 | else: |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 301 | m.config.SetBoolean('repo.clonebundle', opt.clone_bundle) |
Xin Li | d79a4bc | 2020-05-20 16:03:45 -0700 | [diff] [blame] | 302 | |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 303 | if opt.submodules: |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 304 | m.config.SetBoolean('repo.submodules', opt.submodules) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 305 | |
XD Trol | 630876f | 2022-01-17 23:29:04 +0800 | [diff] [blame] | 306 | if opt.git_lfs is not None: |
| 307 | if opt.git_lfs: |
| 308 | git_require((2, 17, 0), fail=True, msg='Git LFS support') |
| 309 | |
| 310 | m.config.SetBoolean('repo.git-lfs', opt.git_lfs) |
| 311 | if not is_new: |
| 312 | print('warning: Changing --git-lfs settings will only affect new project checkouts.\n' |
| 313 | ' Existing projects will require manual updates.\n', file=sys.stderr) |
| 314 | |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 315 | if opt.use_superproject is not None: |
| 316 | m.config.SetBoolean('repo.superproject', opt.use_superproject) |
| 317 | |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 318 | if standalone_manifest: |
| 319 | if is_new: |
| 320 | manifest_name = 'default.xml' |
Jack Neus | 1988385 | 2021-10-25 22:38:44 +0000 | [diff] [blame] | 321 | manifest_data = fetch.fetch_file(opt.manifest_url, verbose=opt.verbose) |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 322 | dest = os.path.join(m.worktree, manifest_name) |
| 323 | os.makedirs(os.path.dirname(dest), exist_ok=True) |
| 324 | with open(dest, 'wb') as f: |
| 325 | f.write(manifest_data) |
| 326 | return |
| 327 | |
Mike Frysinger | edd3d45 | 2020-02-21 23:55:07 -0500 | [diff] [blame] | 328 | if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet, verbose=opt.verbose, |
Mike Frysinger | c58ec4d | 2020-02-17 14:36:08 -0500 | [diff] [blame] | 329 | clone_bundle=opt.clone_bundle, |
David Pursehouse | abdf750 | 2020-02-12 14:58:39 +0900 | [diff] [blame] | 330 | current_branch_only=opt.current_branch_only, |
Mike Frysinger | c58ec4d | 2020-02-17 14:36:08 -0500 | [diff] [blame] | 331 | tags=opt.tags, submodules=opt.submodules, |
Raman Tenneti | f32f243 | 2021-04-12 20:57:25 -0700 | [diff] [blame] | 332 | clone_filter=opt.clone_filter, |
| 333 | partial_clone_exclude=self.manifest.PartialCloneExclude): |
Shawn O. Pearce | 1fc99f4 | 2009-03-17 08:06:18 -0700 | [diff] [blame] | 334 | r = m.GetRemote(m.remote.name) |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 335 | print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr) |
Doug Anderson | 2630dd9 | 2011-04-07 13:36:30 -0700 | [diff] [blame] | 336 | |
| 337 | # Better delete the manifest git dir if we created it; otherwise next |
| 338 | # time (when user fixes problems) we won't go through the "is_new" logic. |
| 339 | if is_new: |
Renaud Paquay | a65adf7 | 2016-11-03 10:37:53 -0700 | [diff] [blame] | 340 | platform_utils.rmtree(m.gitdir) |
Shawn O. Pearce | 1fc99f4 | 2009-03-17 08:06:18 -0700 | [diff] [blame] | 341 | sys.exit(1) |
| 342 | |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 343 | if opt.manifest_branch: |
Martin Kelly | 224a31a | 2017-07-10 14:46:25 -0700 | [diff] [blame] | 344 | m.MetaBranchSwitch(submodules=opt.submodules) |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 345 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 346 | syncbuf = SyncBuffer(m.config) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 347 | m.Sync_LocalHalf(syncbuf, submodules=opt.submodules) |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 348 | syncbuf.Finish() |
| 349 | |
Shawn O. Pearce | df01883 | 2009-03-17 08:15:27 -0700 | [diff] [blame] | 350 | if is_new or m.CurrentBranch is None: |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 351 | if not m.StartBranch('default'): |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 352 | print('fatal: cannot create default in manifest', file=sys.stderr) |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 353 | sys.exit(1) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 354 | |
| 355 | def _LinkManifest(self, name): |
| 356 | if not name: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 357 | print('fatal: manifest name (-m) is required.', file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 358 | sys.exit(1) |
| 359 | |
| 360 | try: |
| 361 | self.manifest.Link(name) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 362 | except ManifestParseError as e: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 363 | print("fatal: manifest '%s' not available" % name, file=sys.stderr) |
| 364 | print('fatal: %s' % str(e), file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 365 | sys.exit(1) |
| 366 | |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 367 | def _Prompt(self, prompt, value): |
Mike Frysinger | ab85fe7 | 2019-07-04 17:35:11 -0400 | [diff] [blame] | 368 | print('%-10s [%s]: ' % (prompt, value), end='') |
| 369 | # TODO: When we require Python 3, use flush=True w/print above. |
| 370 | sys.stdout.flush() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 371 | a = sys.stdin.readline().strip() |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 372 | if a == '': |
| 373 | return value |
| 374 | return a |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 375 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 376 | def _ShouldConfigureUser(self, opt): |
Mike Frysinger | 8c1e9cb | 2020-09-06 14:53:18 -0400 | [diff] [blame] | 377 | gc = self.client.globalConfig |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 378 | mp = self.manifest.manifestProject |
| 379 | |
| 380 | # If we don't have local settings, get from global. |
| 381 | if not mp.config.Has('user.name') or not mp.config.Has('user.email'): |
| 382 | if not gc.Has('user.name') or not gc.Has('user.email'): |
| 383 | return True |
| 384 | |
| 385 | mp.config.SetString('user.name', gc.GetString('user.name')) |
| 386 | mp.config.SetString('user.email', gc.GetString('user.email')) |
| 387 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 388 | if not opt.quiet: |
| 389 | print() |
| 390 | print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'), |
| 391 | mp.config.GetString('user.email'))) |
| 392 | print("If you want to change this, please re-run 'repo init' with --config-name") |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 393 | return False |
| 394 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 395 | def _ConfigureUser(self, opt): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 396 | mp = self.manifest.manifestProject |
| 397 | |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 398 | while True: |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 399 | if not opt.quiet: |
| 400 | print() |
David Pursehouse | 54a4e60 | 2020-02-12 14:31:05 +0900 | [diff] [blame] | 401 | name = self._Prompt('Your Name', mp.UserName) |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 402 | email = self._Prompt('Your Email', mp.UserEmail) |
| 403 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 404 | if not opt.quiet: |
| 405 | print() |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 406 | print('Your identity is: %s <%s>' % (name, email)) |
Mike Frysinger | ab85fe7 | 2019-07-04 17:35:11 -0400 | [diff] [blame] | 407 | print('is this correct [y/N]? ', end='') |
| 408 | # TODO: When we require Python 3, use flush=True w/print above. |
| 409 | sys.stdout.flush() |
David Pursehouse | fc24124 | 2012-11-14 09:19:39 +0900 | [diff] [blame] | 410 | a = sys.stdin.readline().strip().lower() |
Nico Sallembien | 6d7508b | 2010-04-01 11:03:53 -0700 | [diff] [blame] | 411 | if a in ('yes', 'y', 't', 'true'): |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 412 | break |
| 413 | |
| 414 | if name != mp.UserName: |
| 415 | mp.config.SetString('user.name', name) |
| 416 | if email != mp.UserEmail: |
| 417 | mp.config.SetString('user.email', email) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 418 | |
| 419 | def _HasColorSet(self, gc): |
| 420 | for n in ['ui', 'diff', 'status']: |
| 421 | if gc.Has('color.%s' % n): |
| 422 | return True |
| 423 | return False |
| 424 | |
| 425 | def _ConfigureColor(self): |
Mike Frysinger | 8c1e9cb | 2020-09-06 14:53:18 -0400 | [diff] [blame] | 426 | gc = self.client.globalConfig |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 427 | if self._HasColorSet(gc): |
| 428 | return |
| 429 | |
| 430 | class _Test(Coloring): |
| 431 | def __init__(self): |
| 432 | Coloring.__init__(self, gc, 'test color display') |
| 433 | self._on = True |
| 434 | out = _Test() |
| 435 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 436 | print() |
| 437 | print("Testing colorized output (for 'repo diff', 'repo status'):") |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 438 | |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 439 | for c in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan']: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 440 | out.write(' ') |
| 441 | out.printer(fg=c)(' %-6s ', c) |
| 442 | out.write(' ') |
| 443 | out.printer(fg='white', bg='black')(' %s ' % 'white') |
| 444 | out.nl() |
| 445 | |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 446 | for c in ['bold', 'dim', 'ul', 'reverse']: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 447 | out.write(' ') |
| 448 | out.printer(fg='black', attr=c)(' %-6s ', c) |
| 449 | out.nl() |
| 450 | |
Mike Frysinger | ab85fe7 | 2019-07-04 17:35:11 -0400 | [diff] [blame] | 451 | print('Enable color display in this user account (y/N)? ', end='') |
| 452 | # TODO: When we require Python 3, use flush=True w/print above. |
| 453 | sys.stdout.flush() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 454 | a = sys.stdin.readline().strip().lower() |
| 455 | if a in ('y', 'yes', 't', 'true', 'on'): |
| 456 | gc.SetString('color.ui', 'auto') |
| 457 | |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 458 | def _ConfigureDepth(self, opt): |
| 459 | """Configure the depth we'll sync down. |
| 460 | |
| 461 | Args: |
| 462 | opt: Options from optparse. We care about opt.depth. |
| 463 | """ |
| 464 | # Opt.depth will be non-None if user actually passed --depth to repo init. |
| 465 | if opt.depth is not None: |
| 466 | if opt.depth > 0: |
| 467 | # Positive values will set the depth. |
| 468 | depth = str(opt.depth) |
| 469 | else: |
| 470 | # Negative numbers will clear the depth; passing None to SetString |
| 471 | # will do that. |
| 472 | depth = None |
| 473 | |
| 474 | # We store the depth in the main manifest project. |
| 475 | self.manifest.manifestProject.config.SetString('repo.depth', depth) |
| 476 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 477 | def _DisplayResult(self, opt): |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 478 | if self.manifest.IsMirror: |
| 479 | init_type = 'mirror ' |
| 480 | else: |
| 481 | init_type = '' |
| 482 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 483 | if not opt.quiet: |
| 484 | print() |
| 485 | print('repo %shas been initialized in %s' % |
| 486 | (init_type, self.manifest.topdir)) |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 487 | |
| 488 | current_dir = os.getcwd() |
| 489 | if current_dir != self.manifest.topdir: |
David Pursehouse | 3576596 | 2013-01-29 09:49:48 +0900 | [diff] [blame] | 490 | print('If this is not the directory in which you want to initialize ' |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 491 | 'repo, please run:') |
| 492 | print(' rm -r %s/.repo' % self.manifest.topdir) |
| 493 | print('and try again.') |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 494 | |
Mike Frysinger | ae6cb08 | 2019-08-27 01:10:59 -0400 | [diff] [blame] | 495 | def ValidateOptions(self, opt, args): |
Victor Boivie | 297e7c6 | 2012-10-05 14:50:05 +0200 | [diff] [blame] | 496 | if opt.reference: |
Samuel Holland | baa0009 | 2018-01-22 10:57:29 -0600 | [diff] [blame] | 497 | opt.reference = os.path.expanduser(opt.reference) |
Victor Boivie | 297e7c6 | 2012-10-05 14:50:05 +0200 | [diff] [blame] | 498 | |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 499 | # Check this here, else manifest will be tagged "not new" and init won't be |
| 500 | # possible anymore without removing the .repo/manifests directory. |
Raman Tenneti | 6bd89aa | 2021-11-16 11:48:09 -0800 | [diff] [blame] | 501 | if opt.mirror: |
| 502 | if opt.archive: |
| 503 | self.OptionParser.error('--mirror and --archive cannot be used ' |
| 504 | 'together.') |
| 505 | if opt.use_superproject is not None: |
| 506 | self.OptionParser.error('--mirror and --use-superproject cannot be ' |
| 507 | 'used together.') |
Mike Frysinger | ae6cb08 | 2019-08-27 01:10:59 -0400 | [diff] [blame] | 508 | |
Raman Tenneti | 4a478ed | 2021-11-17 18:38:24 -0800 | [diff] [blame] | 509 | if opt.standalone_manifest and (opt.manifest_branch or |
| 510 | opt.manifest_name != 'default.xml'): |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 511 | self.OptionParser.error('--manifest-branch and --manifest-name cannot' |
| 512 | ' be used with --standalone-manifest.') |
| 513 | |
Mike Frysinger | 0578ebf | 2020-08-27 01:50:12 -0400 | [diff] [blame] | 514 | if args: |
Mike Frysinger | 401c6f0 | 2021-02-18 15:20:15 -0500 | [diff] [blame] | 515 | if opt.manifest_url: |
| 516 | self.OptionParser.error( |
| 517 | '--manifest-url option and URL argument both specified: only use ' |
| 518 | 'one to select the manifest URL.') |
| 519 | |
| 520 | opt.manifest_url = args.pop(0) |
| 521 | |
| 522 | if args: |
| 523 | self.OptionParser.error('too many arguments to init') |
Mike Frysinger | 0578ebf | 2020-08-27 01:50:12 -0400 | [diff] [blame] | 524 | |
Mike Frysinger | ae6cb08 | 2019-08-27 01:10:59 -0400 | [diff] [blame] | 525 | def Execute(self, opt, args): |
Mike Frysinger | 82caef6 | 2020-02-11 18:51:08 -0500 | [diff] [blame] | 526 | git_require(MIN_GIT_VERSION_HARD, fail=True) |
| 527 | if not git_require(MIN_GIT_VERSION_SOFT): |
| 528 | print('repo: warning: git-%s+ will soon be required; please upgrade your ' |
| 529 | 'version of git to maintain support.' |
| 530 | % ('.'.join(str(x) for x in MIN_GIT_VERSION_SOFT),), |
| 531 | file=sys.stderr) |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 532 | |
Mike Frysinger | 7936ce8 | 2020-02-29 02:53:41 -0500 | [diff] [blame] | 533 | rp = self.manifest.repoProject |
| 534 | |
| 535 | # Handle new --repo-url requests. |
| 536 | if opt.repo_url: |
| 537 | remote = rp.GetRemote('origin') |
| 538 | remote.url = opt.repo_url |
| 539 | remote.Save() |
| 540 | |
Mike Frysinger | 3599cc3 | 2020-02-29 02:53:41 -0500 | [diff] [blame] | 541 | # Handle new --repo-rev requests. |
| 542 | if opt.repo_rev: |
| 543 | wrapper = Wrapper() |
Mike Frysinger | 4aa8584 | 2022-01-25 02:10:28 -0500 | [diff] [blame] | 544 | try: |
| 545 | remote_ref, rev = wrapper.check_repo_rev( |
| 546 | rp.gitdir, opt.repo_rev, repo_verify=opt.repo_verify, quiet=opt.quiet) |
| 547 | except wrapper.CloneFailure: |
| 548 | print('fatal: double check your --repo-rev setting.', file=sys.stderr) |
| 549 | sys.exit(1) |
Mike Frysinger | 3599cc3 | 2020-02-29 02:53:41 -0500 | [diff] [blame] | 550 | branch = rp.GetBranch('default') |
| 551 | branch.merge = remote_ref |
Mike Frysinger | 5e2f32f | 2020-12-05 22:57:19 -0500 | [diff] [blame] | 552 | rp.work_git.reset('--hard', rev) |
Mike Frysinger | 3599cc3 | 2020-02-29 02:53:41 -0500 | [diff] [blame] | 553 | branch.Save() |
| 554 | |
Mike Frysinger | 979d5bd | 2020-02-09 02:28:34 -0500 | [diff] [blame] | 555 | if opt.worktree: |
| 556 | # Older versions of git supported worktree, but had dangerous gc bugs. |
| 557 | git_require((2, 15, 0), fail=True, msg='git gc worktree corruption') |
| 558 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 559 | self._SyncManifest(opt) |
| 560 | self._LinkManifest(opt.manifest_name) |
| 561 | |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 562 | if self.manifest.manifestProject.config.GetBoolean('repo.superproject'): |
Raman Tenneti | ef99ec0 | 2021-03-04 10:29:40 -0800 | [diff] [blame] | 563 | self._CloneSuperproject(opt) |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 564 | |
Shawn O. Pearce | 8630f39 | 2009-03-19 10:17:12 -0700 | [diff] [blame] | 565 | if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror: |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 566 | if opt.config_name or self._ShouldConfigureUser(opt): |
| 567 | self._ConfigureUser(opt) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 568 | self._ConfigureColor() |
| 569 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 570 | self._DisplayResult(opt) |