Builder: set the verbose flag.
(mut self, verbose: bool)
| 153 | |
| 154 | /// Builder: set the verbose flag. |
| 155 | pub fn with_verbose(mut self, verbose: bool) -> Self { |
| 156 | self.verbose = verbose; |
| 157 | self |
| 158 | } |
| 159 | |
| 160 | /// List all configured remotes. |
| 161 | fn list_remotes(&self) -> CliResult<()> { |
no outgoing calls