Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. GIT_SSH
  2. If this environment variable is set then git fetch and git push will use this command instead of ssh when
  3. they need to connect to a remote system. The $GIT_SSH command will be given exactly two arguments: the
  4. username@host (or just host) from the URL and the shell command to execute on that remote system.
  5.  
  6. To pass options to the program that you want to list in GIT_SSH you will need to wrap the program and
  7. options into a shell script, then set GIT_SSH to refer to the shell script.
  8.  
  9. Usually it is easier to configure any desired options through your personal .ssh/config file. Please
  10. consult your ssh documentation for further details.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement