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