MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / resolve_remote_name

Method resolve_remote_name

atomic-cli/src/commands/push/command.rs:181–189  ·  view source on GitHub ↗

Use the explicit remote first, then the repository default.

(&self, repo: &Repository)

Source from the content-addressed store, hash-verified

179
180 /// Use the explicit remote first, then the repository default.
181 fn resolve_remote_name(&self, repo: &Repository) -> String {
182 match &self.remote {
183 Some(name) => name.clone(),
184 None => repo
185 .get_default_remote()
186 .map(|(name, _entry)| name)
187 .unwrap_or_else(|_| DEFAULT_REMOTE.to_string()),
188 }
189 }
190
191 /// Builder: set the dry-run flag.
192 pub fn with_dry_run(mut self, dry_run: bool) -> Self {

Callers 1

resolve_remote_urlMethod · 0.45

Calls 2

get_default_remoteMethod · 0.80
cloneMethod · 0.45

Tested by

no test coverage detected