Skip to content

GerritCodeReview/git-repo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Albert AkmukhametovLUCI
Albert Akmukhametov
and
LUCI
Mar 13, 2025
4b94e77 · Mar 13, 2025
Oct 17, 2023
Feb 4, 2025
Apr 23, 2024
Dec 18, 2024
Apr 23, 2024
Mar 13, 2025
Dec 11, 2024
Aug 15, 2023
Jun 22, 2016
Dec 14, 2020
Nov 15, 2021
Aug 22, 2023
Feb 13, 2020
Apr 19, 2013
Dec 19, 2018
Dec 2, 2019
Dec 2, 2019
Jun 14, 2023
May 11, 2023
Sep 12, 2024
Dec 3, 2024
Jul 27, 2021
Sep 12, 2024
Oct 31, 2023
Dec 3, 2024
Oct 24, 2024
Aug 22, 2023
Sep 26, 2024
Jan 24, 2025
Oct 21, 2023
Jun 13, 2019
Oct 3, 2024
Sep 6, 2023
Nov 22, 2024
Oct 31, 2023
Dec 3, 2024
Feb 4, 2025
Aug 22, 2023
Mar 27, 2024
Oct 31, 2023
Oct 24, 2024
Mar 13, 2025
Oct 17, 2023
Dec 3, 2024
Jul 2, 2024
Oct 21, 2023
May 1, 2024
Apr 23, 2024
Jan 30, 2025
Aug 22, 2023
May 16, 2024
Sep 12, 2024
Mar 21, 2024

Repository files navigation

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.

Contact

Please use the repo-discuss mailing list or issue tracker for questions.

You can file a new bug report under the "repo" component.

Please do not e-mail individual developers for support. They do not have the bandwidth for it, and often times questions have already been asked on repo-discuss or bugs posted to the issue tracker. So please search those sites first.

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