We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1519ef8 commit 9b91624Copy full SHA for 9b91624
asyncgit/src/sync/cred.rs
@@ -103,7 +103,7 @@ fn git_credential_fill(url: &str) -> Option<BasicAuthCredential> {
103
let protocol = url.scheme();
104
105
let cmd = format!("protocol={}\nhost={}\n", protocol, host);
106
- let cmd = format!("printf \"{}\" | git credential fill", cmd);
+ let cmd = format!("printf \"{}\" | git credential get", cmd);
107
108
let bash_args = vec!["-c".to_string(), cmd];
109
0 commit comments