tag | 67302f4a54449bfffc23519cd2c4607294e8ced9 | |
---|---|---|
tagger | Scott Lee <ddoman@google.com> | Thu Oct 26 19:30:28 2023 +0000 |
object | b99272c601bc5f466c3cfc782bb852c2c967ad27 |
repo v2.39
commit | b99272c601bc5f466c3cfc782bb852c2c967ad27 | [log] [tgz] |
---|---|---|
author | Daniel Kutik <daniel.kutik@lavawerk.com> | Mon Oct 23 21:20:07 2023 +0200 |
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Oct 25 09:06:23 2023 +0000 |
tree | f13f0f0cc7942907ab3c0b901ff2ccdf8d0aec44 | |
parent | b0430b5bc519c93adce2e670d3b5083086a43383 [diff] |
sync: PersistentTransport call parent init Found via pylint: W0231: __init__ method from base class 'Transport' is not called (super-init-not-called) Just fixed for code correctness and to avoid potential future bugs. Change-Id: Ie1e723c2afe65d026d70ac01a16ee7a40c149834 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/390676 Reviewed-by: Mike Frysinger <vapier@google.com> Tested-by: Daniel Kutik <daniel.kutik@lavawerk.com> Commit-Queue: Daniel Kutik <daniel.kutik@lavawerk.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