Initial commit
This commit is contained in:
8
wp-content/plugins/gitium/inc/ssh-git
Executable file
8
wp-content/plugins/gitium/inc/ssh-git
Executable file
@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
SSH_AUTH_SOCK=''
|
||||
SSH="ssh -q -F /dev/null -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
|
||||
if [ -z "$GIT_KEY_FILE" ] ; then
|
||||
exec $SSH "$@"
|
||||
else
|
||||
exec $SSH -i "$GIT_KEY_FILE" "$@"
|
||||
fi
|
Reference in New Issue
Block a user