You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: asyncgit/src/sync/remotes.rs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -178,8 +178,8 @@ fn remote_callbacks<'a>(
178
178
});
179
179
180
180
letmut first_call_to_credentials = true;
181
-
// This boolean is used to avoid multiple call to credentials callback.
182
-
// If credentials are bad, we don't ask the user to re-fill his creds. We push an error and he will be able to restart his action (for example a push) and retype his creds.
181
+
// This boolean is used to avoid multiple calls to credentials callback.
182
+
// If credentials are bad, we don't ask the user to re-fill their creds. We push an error and they will be able to restart their action (for example a push) and retype their creds.
183
183
// This behavior is explained in a issue on git2-rs project : https://github.com/rust-lang/git2-rs/issues/347
184
184
// An implementation reference is done in cargo : https://github.com/rust-lang/cargo/blob/9fb208dddb12a3081230a5fd8f470e01df8faa25/src/cargo/sources/git/utils.rs#L588
185
185
// There is also a guide about libgit2 authentication : https://libgit2.org/docs/guides/authentication/
0 commit comments