commit | 71928c19a671b78ed39578d675d1d8b969a21a38 | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@google.com> | Fri Feb 21 23:45:08 2020 -0500 |
committer | Mike Frysinger <vapier@google.com> | Sat Feb 22 05:56:06 2020 +0000 |
tree | 0f512e34513424b8e3f18a26d27ac0818408f62f | |
parent | f5dbd2eb07f6a9cdb49b7a2dd157925963192ded [diff] |
repo: show redirects when tracing commands This copies the output style we use in git_command for showing output and input redirections. Change-Id: I449b27e7b262e1b30b24333109a1d91d9c7b1ce7 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256453 Reviewed-by: Jonathan Nieder <jrn@google.com> 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