1
1
Fork 0

ssh_config: Default to IdentitiesOnly yes

This commit is contained in:
Jonathan Schleifer 2022-12-04 23:47:44 +00:00
parent 802b147758
commit 42df8d2bba
4 changed files with 5 additions and 4 deletions

View file

@ -1,4 +1,4 @@
function gsftp --wraps sftp
set -lx SSH_AUTH_SOCK $GNUPGHOME/S.gpg-agent.ssh
sftp $argv
sftp -o IdentitiesOnly=no $argv
end

View file

@ -1,4 +1,4 @@
function gssh --wraps ssh
set -lx SSH_AUTH_SOCK $GNUPGHOME/S.gpg-agent.ssh
ssh $argv
ssh -o IdentitiesOnly=no $argv
end