No Description

Mike Frysinger 949bc34267 main/repo: add support for subcommand aliases 6 years ago
.github b57e633433 github: enable github actions for postsubmit testing 6 years ago
docs f841ca48c1 git_config: add support for repo-specific settings 6 years ago
hooks 3995ebd8c1 Update commit-msg hook to version from Gerrit 3.1.3 6 years ago
subcmds c0d1866b35 project/sync: move DeleteProject helper to Project 6 years ago
tests 77b4397a73 git_config: add GetInt helper 6 years ago
.flake8 076512aafa flake8: Suppress "E731 do not assign a lambda expression, use a def" 6 years ago
.gitattributes 01952e6634 Adds additional crlf clobber avoidance. 9 years ago
.gitignore b0b164a87f Add PyCharm project directory into the .gitignore 6 years ago
.mailmap afbccdb11e Update .mailmap 6 years ago
.project 9d5bf60d3c Set correct name in PyDev and Eclipse project config 12 years ago
.pydevproject d4b13c280b Leverage the next keyword from python 2.7 7 years ago
LICENSE 5b3a57c3ff setup.py: add basic packaging files 6 years ago
MANIFEST.in 5b3a57c3ff setup.py: add basic packaging files 6 years ago
README.md b57e633433 github: enable github actions for postsubmit testing 6 years ago
SUBMITTING_PATCHES.md d6b8bd464c Reword the documentation regarding coding style 6 years ago
color.py 819827a42d Fix blank line issues reported by flake8 6 years ago
command.py 72ebf19e52 command: add a `repo help` tip to --help output 6 years ago
editor.py 819827a42d Fix blank line issues reported by flake8 6 years ago
error.py 819827a42d Fix blank line issues reported by flake8 6 years ago
event_log.py 819827a42d Fix blank line issues reported by flake8 6 years ago
git_command.py 56ce3468b4 assume environment always accepts strings 6 years ago
git_config.py f841ca48c1 git_config: add support for repo-specific settings 6 years ago
git_refs.py 54a4e6007a Fix various whitespace issues reported by pyflakes 6 years ago
git_ssh 61b2d41f26 add license header to a few more files 6 years ago
gitc_utils.py 819827a42d Fix blank line issues reported by flake8 6 years ago
main.py 949bc34267 main/repo: add support for subcommand aliases 6 years ago
manifest_xml.py 979d5bdc3e add experimental git worktree support 6 years ago
pager.py 3cda50a41b pyflakes: Fix remaining "E501 line too long" warnings 6 years ago
platform_utils.py 8f9bf484d8 platform_utils: have Windows select stream return "" at EOF 6 years ago
platform_utils_win32.py a46bf7dc2a flake8: Suppress "F821 undefined name" inline for Python 2 names 6 years ago
progress.py 819827a42d Fix blank line issues reported by flake8 6 years ago
project.py c0d1866b35 project/sync: move DeleteProject helper to Project 6 years ago
pyversion.py 819827a42d Fix blank line issues reported by flake8 6 years ago
repo 949bc34267 main/repo: add support for subcommand aliases 6 years ago
repo_trace.py 819827a42d Fix blank line issues reported by flake8 6 years ago
run_tests d21638424c tox: get tests passing a bit on Windows 6 years ago
setup.py 1b117db767 find python via env 6 years ago
tox.ini b57e633433 github: enable github actions for postsubmit testing 6 years ago
wrapper.py 819827a42d Fix blank line issues reported by flake8 6 years ago

README.md

repo

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.

Install

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