commit | edd3d45b35c33e06f9d2f569d4fb1d9c9c739151 | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@google.com> | Fri Feb 21 23:55:07 2020 -0500 |
committer | Mike Frysinger <vapier@google.com> | Sat Feb 22 06:31:22 2020 +0000 |
tree | 73158f67275ef5a95ead8b2f8736cd2c86a7eaf1 | |
parent | 71928c19a671b78ed39578d675d1d8b969a21a38 [diff] |
repo/init: add --verbose flags We don't use these for much yet, but init passes it down to the project sync layers which already has support for verbose mode. Change-Id: I651794f1b300be1688eeccf3941ba92c776812b5 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256454 Tested-by: Mike Frysinger <vapier@google.com> Reviewed-by: Jonathan Nieder <jrn@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