We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Similar issue to #196, Literate.jl will still ask for a passphrase if your SSH key is password protected.
The fix in #194 introduces a regression where it ignores ssh-agent variables. It should use withenv instead of setenv.
withenv
setenv
The actual fix requires add adding the BatchMode option to GIT_SSH_COMMAND.
BatchMode
GIT_SSH_COMMAND
The text was updated successfully, but these errors were encountered:
a7bdb8c
It shouldn't ask at all -- what version of git are you using?
git
It is better to use addenv (a7bdb8c).
addenv
Yea, maybe this is a better way to supress prompts compared to 75f4e21 (but that patch is still needed for https auth I think)? Edit: 063f654
Sorry, something went wrong.
No branches or pull requests
Similar issue to #196, Literate.jl will still ask for a passphrase if your SSH key is password protected.
The fix in #194 introduces a regression where it ignores ssh-agent variables. It should use
withenv
instead ofsetenv
.The actual fix requires add adding the
BatchMode
option toGIT_SSH_COMMAND
.The text was updated successfully, but these errors were encountered: