commit | fc1b18ae9e39afc69b37ef4ada7a990e74b2c075 | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@google.com> | Mon Feb 24 15:38:07 2020 -0500 |
committer | David Pursehouse <dpursehouse@collab.net> | Mon Feb 24 23:35:47 2020 +0000 |
tree | 1041653f3c0e3c1917fff2939c5e9af0850c5071 | |
parent | d957ec6a834e333a3812546911f786b0c20b808f [diff] |
upload: allow users to set labels when uploading Bug: https://crbug.com/gerrit/11801 Change-Id: I060465105b4e68ddfc815e572f62bf5dac2c1ffd Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256614 Tested-by: Mike Frysinger <vapier@google.com> Reviewed-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-by: David Pursehouse <dpursehouse@collab.net>
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