Michael S. Tsirkin wrote: > I know, problem is I want to use different options at different times. > I could use -F configfile ssh option, but how to pass *that* to git? You can set the path of the ssh executable to use with the GIT_SSH environment variable. Create a shell script like #!/bin/sh exec ssh --your-options-- $* and make GIT_SSH point to it. Regards, Dennis - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html