tag | 0a4846d7731e600ec5a159a1d19743b4c3b40fd4 | |
---|---|---|
tagger | Xin Li <delphij@google.com> | Wed Apr 20 13:49:27 2022 -0700 |
object | 4c11aebeb934817407266787d58247e1ca802057 |
repo v2.24
commit | 4c11aebeb934817407266787d58247e1ca802057 | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@google.com> | Tue Apr 19 02:30:09 2022 -0400 |
committer | Mike Frysinger <vapier@google.com> | Tue Apr 19 23:50:48 2022 +0000 |
tree | 206022ca4322d0eaf9b89f9c3acc560e2cb5db02 | |
parent | b90a422ab692657709ed49783212f7febe445ac7 [diff] |
progress: optimize progress bar updates a bit Rather than erase the entire line first then print out the new content, print out the new content on top of the old and then erase anything we didn't update. This should result in a lot less flashing with faster terminals. Bug: https://crbug.com/gerrit/11293 Change-Id: Ie2920b0bf3d5e6f920b8631a1c406444b23cd12d Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/335214 Reviewed-by: LaMont Jones <lamontjones@google.com> 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.
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