tag | 41b2f6d8398861607bc96a545617bf090b92b63d | |
---|---|---|
tagger | Josip Sokcevic <sokcevic@chromium.org> | Mon Jan 29 22:24:19 2024 +0000 |
object | 4217a82bec7b95c1a0bc7b081a1764a6a6d6c59b |
repo v2.41
commit | 4217a82bec7b95c1a0bc7b081a1764a6a6d6c59b | [log] [tgz] |
---|---|---|
author | Josip Sokcevic <sokcevic@google.com> | Wed Jan 24 13:54:25 2024 -0800 |
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Jan 25 21:32:58 2024 +0000 |
tree | 97b55aa04e1d2e3692b212d9e7438728c86a8423 | |
parent | 208f34495086eba60f744408aa26b4c62d6db6c6 [diff] |
project: Rename if deletion fails If a project contains files not owned by the current user, remove will fail. In order to ensure repo sync continues to work, rename the affected project instead, and let user know about it. Bug: 321273512 Change-Id: I0779d61fc67042308a0226adea7d98167252a5d3 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/404372 Reviewed-by: Mike Frysinger <vapier@google.com> Tested-by: Josip Sokcevic <sokcevic@google.com> Commit-Queue: Josip Sokcevic <sokcevic@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