commit | e6e27b338b31ec5b1e7567c3639523c3739e4c2e | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@google.com> | Thu Feb 20 00:48:39 2020 -0500 |
committer | Mike Frysinger <vapier@google.com> | Thu Feb 20 06:14:00 2020 +0000 |
tree | d1f7581c0c16b5b1e2f93ae7df6f64a2c50c24ee | |
parent | aa611a2ca284333521624f7095c9cff42278a4b9 [diff] |
abandon: add support for --quiet Also fix the normal output to write to stdout. Change-Id: I6c117eea9cec08f5be9a44b90dbe9bf1f824ec95 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256114 Reviewed-by: David Pursehouse <dpursehouse@collab.net> 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.
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