Skip to content

Check if SSH_AUTH_SOCK env var is set before trying to use the SSH agent. #987

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GitUpKit/Core/GCRepository.m
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ static int _CredentialsCallback(git_cred** cred, const char* url, const char* us
GCRepository* repository = (__bridge GCRepository*)payload;
if (allowed_types & GIT_CREDTYPE_SSH_KEY) {
#if !TARGET_OS_IPHONE
if (!repository->_didTrySSHAgent) {
if (!repository->_didTrySSHAgent && getenv("SSH_AUTH_SOCK")) {
repository->_didTrySSHAgent = YES;
return git_cred_ssh_key_from_agent(cred, user);
}
Expand Down