commit | daa2cecdc5b8dad4361f9dd0c9acf4dd7a508729 | [log] [tgz] |
---|---|---|
author | David Pursehouse <dpursehouse@collab.net> | Thu Feb 13 10:34:05 2020 +0900 |
committer | David Pursehouse <dpursehouse@collab.net> | Thu Feb 13 04:12:22 2020 +0000 |
tree | 40a239873bd1b314faf70ba8383fea2b87886c1d | |
parent | 3c5114cd787abf9abc8c4c0cf2a285be9532aeef [diff] |
Mention exceptions to Google Style Guide in SUBMITTING_PATCHES.md Change-Id: I05d313c66f312942405a884a54118cb1d7af1bac Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254671 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