git-retry(1)
| GIT-RETRY(1) | Chromium depot_tools Manual | GIT-RETRY(1) |
NAME
git-retry - Bootstrap function to retry a git command.
SYNOPSIS
git retry [-v] [-c COUNT] [-d DELAY] [-D DELAY_FACTOR] — <git_subcommand>
DESCRIPTION
git retry is a bootstrap that wraps a standard git command execution in a fault-tolerant retry wrapper.
If a retry succeeds, the return code of the successful attempt is returned. Otherwise, the return code of the last failed attempt is returned.
The wrapper is aware of git-specific failure conditions and will only consider retrying if a given failure can be linked to such a condition.
OPTIONS
<git_subcommand>
-v, --verbose
-c, --retry-count count
-d, --delay seconds
-D, --delay-factor
(Note that a delay factor of *1* will result in a constant delay.)
EXIT STATUS
Upon success, git retry will exit with the successful exit code of 0. On failure, it will exit with the exit code of the last failed attempt.
CHROMIUM DEPOT_TOOLS
Part of the chromium depot_tools(7) suite. These tools are meant to assist with the development of chromium and related projects. Download the tools by checking out the git repository[1].
NOTES
- 1.
- git repository
| 08/26/2022 | depot_tools 59e95c91 |
