tag | 354b749aeb634055b17e3dd9334ae5182c12e064 | |
---|---|---|
tagger | Mike Frysinger <vapier@google.com> | Mon Feb 24 12:42:06 2020 -0500 |
object | 9f91c4395acf03b89738225b329c19fecaf46a3e |
repo v2.4
commit | 9f91c4395acf03b89738225b329c19fecaf46a3e | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@google.com> | Sun Feb 23 23:24:40 2020 -0500 |
committer | Mike Frysinger <vapier@google.com> | Mon Feb 24 17:41:40 2020 +0000 |
tree | ef21b3f41e55968d657b6152870b6ffb5ef35cd6 | |
parent | 4b0eb5a4418babdb12ae6fc50150473dc6dd5733 [diff] |
project: replace GetHeadPath with new git helper Change-Id: I79931cb484508c78f6a8b8413d05b85ed8bc6d98 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256533 Reviewed-by: David Pursehouse <dpursehouse@collab.net> Tested-by: Mike Frysinger <vapier@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.
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