tag | 3ecc62eb2c9bc76e4e23d1dbd72455975f07c803 | |
---|---|---|
tagger | Yiwei Zhang <yiwzhang@google.com> | Wed Jul 03 18:56:07 2024 +0000 |
object | 0444ddf78e3026056ee3786119e595909c039ff2 |
repo v2.46
commit | 0444ddf78e3026056ee3786119e595909c039ff2 | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@google.com> | Tue Jul 02 14:52:22 2024 -0400 |
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Jul 02 19:03:54 2024 +0000 |
tree | 6663c1ce86b2b768f0d78e66a2818a9ff52c135e | |
parent | 9bf8236c24839045787fa284471fab950485285c [diff] |
project: ignore more curl failure modes Current clone bundle fetches from Google storage results HTTP/404 and curl exiting 56. This is basically WAI, so stop emitting verbose error output whenever that happens. Also add a few more curl exit statuses based on chromite history, and document them. Change-Id: I3109f8a8a19109ba9bbd62780b40bbcd4fce9b76 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/432197 Commit-Queue: Mike Frysinger <vapier@google.com> Reviewed-by: Gavin Mak <gavinmak@google.com> Tested-by: Mike Frysinger <vapier@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