commit | 086710465eceb812d032841b2c85a92152ce58f5 | [log] [tgz] |
---|---|---|
author | David Pursehouse <dpursehouse@collab.net> | Wed Feb 12 13:52:31 2020 +0900 |
committer | David Pursehouse <dpursehouse@collab.net> | Wed Feb 12 05:00:36 2020 +0000 |
tree | aa92e75a2603838ab33305f7deb2e0d1737b7b71 | |
parent | ed4f2113d22e7cc8ccc13c15ad6d5b18926d95d7 [diff] |
upload: Fix flake8 E241 multiple spaces after ',' Change-Id: I3a65869f9d006027270a7826d7982950c0e6759a Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254597 Tested-by: David Pursehouse <dpursehouse@collab.net> Reviewed-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