commit | 65f51ad29b69986148a3eebd58683f0c4755d10a | [log] [tgz] |
---|---|---|
author | Adrien Bioteau <adrien.bioteau@gmail.com> | Fri Jul 24 14:56:20 2020 +0200 |
committer | Adrien Bioteau <adrien.bioteau@gmail.com> | Thu Jul 30 20:46:11 2020 +0000 |
tree | 0de0fce41372cfae4bf54c4bbc3703d4419a70c5 | |
parent | 80944b538d606a8ee143db85ca9e50305d3c73e4 [diff] |
Fix Git base version for worktreeconfig extension worktreeconfig extension only appears with version Git 2.20.0 Change-Id: I3ea8b7d9f8a1f7953e536edd77b09cbc4f8f3158 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/276700 Reviewed-by: Mike Frysinger <vapier@google.com> Tested-by: Adrien Bioteau <adrien.bioteau@gmail.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