tag | 22c398f7c467af63a857b886e92e95816d1ae1e4 | |
---|---|---|
tagger | Josip Sokcevic <sokcevic@google.com> | Tue Feb 27 10:09:50 2024 -0800 |
object | 5554572f02537b8646139d59ab520e59e1d5f7b3 |
repo v2.42
commit | 5554572f02537b8646139d59ab520e59e1d5f7b3 | [log] [tgz] |
---|---|---|
author | Josip Sokcevic <sokcevic@google.com> | Thu Feb 22 16:38:00 2024 -0800 |
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Feb 27 17:28:33 2024 +0000 |
tree | d730611b566ec7f691619dc9a6c08b7e3d6b958e | |
parent | 97ca50f5f946c39e8ecd00c7e6ea78e90b4bb6dd [diff] |
sync: Introduce git checkout levels If a repo manifest is updated so that project B is placed within a project A, and if project A had content in new B's location in the old checkout, then repo sync could break depending on checkout order, since B can't be checked out before A. This change introduces checkout levels which enforces right sequence of checkouts while still allowing for parallel checkout. In an example above, A will always be checked out first before B. BUG=b:325119758 TEST=./run_tests, manual sync on ChromeOS repository Change-Id: Ib3b5e4d2639ca56620a1e4c6bf76d7b1ab805250 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/410421 Tested-by: Josip Sokcevic <sokcevic@google.com> Reviewed-by: Greg Edelston <gredelston@google.com> Commit-Queue: Josip Sokcevic <sokcevic@google.com> Reviewed-by: Gavin Mak <gavinmak@google.com>
Repo is a tool built on top of Git. Repo helps manage many Git repositories, does the uploads to revision control systems, and automates parts of the development workflow. Repo is not meant to replace Git, only to make it easier to work with Git. The repo command is an executable Python script that you can put anywhere in your path.
Please use the repo-discuss mailing list or issue tracker for questions.
You can file a new bug report under the “repo” component.
Please do not e-mail individual developers for support. They do not have the bandwidth for it, and often times questions have already been asked on repo-discuss or bugs posted to the issue tracker. So please search those sites first.
Many distros include repo, so you might be able to install from there.
# Debian/Ubuntu. $ sudo apt-get install repo # Gentoo. $ sudo emerge dev-vcs/repo
You can install it manually as well as it's a single script.
$ mkdir -p ~/.bin $ PATH="${HOME}/.bin:${PATH}" $ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo $ chmod a+rx ~/.bin/repo