OLD | NEW |
1 git-retry(1) | 1 git-retry(1) |
2 ============= | 2 ============= |
3 | 3 |
4 NAME | 4 NAME |
5 ---- | 5 ---- |
6 git-retry - | 6 git-retry - |
7 include::_git-retry_desc.helper.txt[] | 7 include::_git-retry_desc.helper.txt[] |
8 | 8 |
9 SYNOPSIS | 9 SYNOPSIS |
10 -------- | 10 -------- |
11 [verse] | 11 [verse] |
12 'git retry' [-v] [-c COUNT] [-d DELAY] [-e] -- _<git_subcommand>_ | 12 'git retry' [-v] [-c COUNT] [-d DELAY] [-D DELAY_FACTOR] -- _<git_subcommand>_ |
13 | 13 |
14 DESCRIPTION | 14 DESCRIPTION |
15 ----------- | 15 ----------- |
16 | 16 |
17 `git retry` is a bootstrap that wraps a standard `git` command execution in | 17 `git retry` is a bootstrap that wraps a standard `git` command execution in |
18 a fault-tolerant retry wrapper. | 18 a fault-tolerant retry wrapper. |
19 | 19 |
20 If a retry succeeds, the return code of the successful attempt is returned. | 20 If a retry succeeds, the return code of the successful attempt is returned. |
21 Otherwise, the return code of the last failed attempt is returned. | 21 Otherwise, the return code of the last failed attempt is returned. |
22 | 22 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 EXIT STATUS | 58 EXIT STATUS |
59 ----------- | 59 ----------- |
60 | 60 |
61 Upon success, `git retry` will exit with the successful exit code of *0*. On | 61 Upon success, `git retry` will exit with the successful exit code of *0*. On |
62 failure, it will exit with the exit code of the last failed attempt. | 62 failure, it will exit with the exit code of the last failed attempt. |
63 | 63 |
64 | 64 |
65 include::_footer.txt[] | 65 include::_footer.txt[] |
66 | 66 |
67 // vim: ft=asciidoc: | 67 // vim: ft=asciidoc: |
OLD | NEW |