commit | 0b888912cb8ebaa5357997dbecd2bbe64ebb9161 | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@google.com> | Fri Feb 21 22:48:40 2020 -0500 |
committer | Mike Frysinger <vapier@google.com> | Sat Feb 22 04:54:28 2020 +0000 |
tree | 724e4d7df5751e1307e71b9368976d1e93d2b370 | |
parent | 75264789c04bbdaffd479ab7725c85b1b8876d8e [diff] |
init: hide summary output when using --quiet Change-Id: I5e30a6d6a1c95fb8d75d8b0f4d63b497e9aac526 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256452 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