tag | eedea4e58128d3ea09aaa7add752c51a882d7edf | |
---|---|---|
tagger | Gavin Mak <gavinmak@google.com> | Tue Dec 12 20:52:11 2023 +0000 |
object | 4c80921d22c20a28d531c9e3e8a0ce4433c6509d |
repo v2.40
commit | 4c80921d22c20a28d531c9e3e8a0ce4433c6509d | [log] [tgz] |
---|---|---|
author | Tomasz Wasilczyk <twasilczyk@google.com> | Fri Dec 08 13:42:17 2023 -0800 |
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Dec 08 23:08:46 2023 +0000 |
tree | 583b21bce8c6b6be7a078d02eb11569dc7321699 | |
parent | f56484c05b545b7b798e025971673f9593dcc51c [diff] |
Don't log spam `repo sync` by default Most times a repo sync after some time (week+) results in a bunch of messages, which are not very useful for average user: - discarding 1 commits - Deleting obsolete checkout. Bug: N/A Test: repo sync Change-Id: I881eab61f9f261e98f3656c09e73ddd159ce288c Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/397038 Reviewed-by: Josip Sokcevic <sokcevic@google.com> Commit-Queue: Josip Sokcevic <sokcevic@google.com> Tested-by: Tomasz Wasilczyk <twasilczyk@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