tag | 5eb753ad5f826e579293634250bebd4793720345 | |
---|---|---|
tagger | Xin Li <delphij@google.com> | Tue Sep 27 16:09:55 2022 -0700 |
object | acc4c857a0b6e2e33e3647028cbd312498fd5900 |
repo v2.29.3
commit | acc4c857a0b6e2e33e3647028cbd312498fd5900 | [log] [tgz] |
---|---|---|
author | LaMont Jones <lamontjones@google.com> | Thu Sep 22 19:05:01 2022 +0000 |
committer | LaMont Jones <lamontjones@google.com> | Thu Sep 22 19:18:48 2022 +0000 |
tree | 1638467a6a312a9aadd6d15b41ef8f9366e9c788 | |
parent | a39af3d4322135202aabfc78cc65809a28a4ca75 [diff] |
sync: only use --cruft when git supports it. git gc --cruft was added in 2.37.0. Bug: https://crbug.com/gerrit/16270 Change-Id: I71e46741e33472a92f16d6f11c51a23e1e55d869 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/346577 Reviewed-by: Emily Shaffer <emilyshaffer@google.com> Tested-by: LaMont Jones <lamontjones@google.com> Reviewed-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