commit | f5dbd2eb07f6a9cdb49b7a2dd157925963192ded | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@google.com> | Fri Feb 21 01:19:46 2020 -0500 |
committer | Mike Frysinger <vapier@google.com> | Sat Feb 22 04:56:24 2020 +0000 |
tree | f770843cf2af6af2451140f0db05111528ac41f4 | |
parent | 0b888912cb8ebaa5357997dbecd2bbe64ebb9161 [diff] |
docs: update Windows info Add a section on worktrees to avoid symlink problems, and note that Python 3 is now a hard requirement. Change-Id: I83811db88692127c40cec8270f6f9486c639dc3f Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256314 Tested-by: Mike Frysinger <vapier@google.com> Reviewed-by: David Pursehouse <dpursehouse@collab.net>
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