Builder: set the remote name or URL.
(mut self, remote: impl Into<String>)
| 162 | |
| 163 | /// Builder: set the remote name or URL. |
| 164 | pub fn with_remote(mut self, remote: impl Into<String>) -> Self { |
| 165 | self.remote = Some(remote.into()); |
| 166 | self |
| 167 | } |
| 168 | |
| 169 | /// Builder: set the remote view to push to. |
| 170 | pub fn with_to_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls