commit | d38300c7565461d4e0b9d7bedf88552e9fd6bf3b | [log] [tgz] |
---|---|---|
author | Sean McAllister <smcallis@google.com> | Thu Feb 20 13:49:01 2020 -0700 |
committer | Sean McAllister <smcallis@google.com> | Sat Feb 22 19:17:40 2020 +0000 |
tree | 209e2dfb74027133769f6d9cc207f7a53c456c64 | |
parent | dcbfadf814aeb31bb66a265c74ef681d9dcb4875 [diff] |
manifest: support optional --manifest-name Still use the repo manifest by default as before, but gives us the option of overriding it to support e.g.: using a subset of the full manifest. Change-Id: Ia42cd1cb3a0a58929d31bb01c9724e9d31f68730 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256372 Reviewed-by: Mike Frysinger <vapier@google.com> Tested-by: Sean McAllister <smcallis@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