tag | a8e843579ed3f657c972e9f8d66ce2e6c91b046a | |
---|---|---|
tagger | Josip Sokcevic <sokcevic@chromium.org> | Wed Oct 30 19:24:31 2024 +0000 |
object | 1d5098617ec7f476b76d1aa676e2a001d2c3d533 |
repo v2.49.1
commit | 1d5098617ec7f476b76d1aa676e2a001d2c3d533 | [log] [tgz] |
---|---|---|
author | Allen Webb <allenwebb@google.com> | Tue Oct 29 13:24:05 2024 -0500 |
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Oct 30 17:03:57 2024 +0000 |
tree | e2a590479ad74856fbfedf6aff9feed5a02e6d94 | |
parent | e219c78fe595c09c5d5b7023ae59f465a61f46ff [diff] |
worktree: Do not try to fix relative paths --worktree was broken with incorrect paths in the .git files whenever the local copy of git populated gitdir with relative paths instead of absoulte paths. Bug: 376251410 Change-Id: Id32dc1576315218967de2a9bfe43bf7a5a0e7aa6 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/440801 Commit-Queue: Allen Webb <allenwebb@google.com> Reviewed-by: Josip Sokcevic <sokcevic@google.com> Tested-by: Allen Webb <allenwebb@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