commit | 8409410aa294cad68bf93679726e0a4465e1fe2b | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@google.com> | Tue Feb 11 02:10:28 2020 -0500 |
committer | Mike Frysinger <vapier@google.com> | Wed Feb 12 19:57:42 2020 +0000 |
tree | dc7bbeef44441043ecb43c6ca4c114ac8dc3c2f3 | |
parent | dc63181fcd3c34340e3acb5c72ae80539b5c7282 [diff] |
repo: export GIT_TRACE2_PARENT_SID This helps with people tracing repo/git execution. We use a similar format to git, but a little simpler since we always initialize the env var setting, and we want to avoid too much overhead. Bug: https://crbug.com/gerrit/12314 Change-Id: I75675b6cc4c6f7c4f5e09f54128eba9456364d04 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254331 Reviewed-by: Josh Steadmon <steadmon@google.com> Reviewed-by: Mike Frysinger <vapier@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