| commit | 4ab2284a945d82b017c6646fca57c5973ffdabaf | [log] [tgz] |
|---|---|---|
| author | Peter Kjellerstedt <pkj@axis.com> | Thu Oct 16 20:29:28 2025 +0200 |
| committer | Gavin Mak <gavinmak@google.com> | Mon Oct 27 11:38:07 2025 -0700 |
| tree | b70f27fe505573b038c62c7eb98ef4a695b9e30b | |
| parent | 1afe96a7e997ce7748f066b206a85ac648f7a87c [diff] |
manifest: Make extend-project support copyfile, linkfile and annotation This allows an existing project to be extended by these elements. Change-Id: I6826e518f39ca86485301491639101943b7e2ae0 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/519781 Reviewed-by: Mike Frysinger <vapier@google.com> Tested-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Reviewed-by: Gavin Mak <gavinmak@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.
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.
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