Builder: set the local view to push from.
(mut self, view: impl Into<String>)
| 174 | |
| 175 | /// Builder: set the local view to push from. |
| 176 | pub fn with_from_view(mut self, view: impl Into<String>) -> Self { |
| 177 | self.from_view = Some(view.into()); |
| 178 | self |
| 179 | } |
| 180 | |
| 181 | /// Use the explicit remote first, then the repository default. |
| 182 | fn resolve_remote_name(&self, repo: &Repository) -> String { |
no outgoing calls