fix: treat name-only git remotes as local-only

This commit is contained in:
mehmet turac
2026-05-24 21:58:42 +03:00
parent 8764b6f78e
commit 7516dfe48a
5 changed files with 127 additions and 6 deletions

View File

@@ -475,7 +475,7 @@ mod tests {
assert_eq!(pull.status, "no_remote");
let push = git_push(vault.clone()).await.unwrap();
assert_eq!(push.status, "error");
assert_eq!(push.status, "no_remote");
let status = git_remote_status(vault.clone()).await.unwrap();
assert!(!status.has_remote);