commit | 31b9b4b06cdb778b74165e60408eedad8cfb5b2a | [log] [tgz] |
---|---|---|
author | David Pursehouse <dpursehouse@collab.net> | Thu Feb 13 08:20:14 2020 +0900 |
committer | David Pursehouse <dpursehouse@collab.net> | Thu Feb 13 00:31:24 2020 +0000 |
tree | 4125f2f4468b07cdeed665053d2442f73fa656a5 | |
parent | 0b57eed8f00d81047b1d4738e4dd52978fc2d4ff [diff] |
repo: Fix blank line issues reported by flake8 Change-Id: I62633e71a36b2acbd09e205447a02159dd334896 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254694 Reviewed-by: Mike Frysinger <vapier@google.com> Tested-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