* ssh username environment variable
@ 2010-01-08 20:24 Chris Packham
2010-01-08 20:29 ` Shawn O. Pearce
0 siblings, 1 reply; 4+ messages in thread
From: Chris Packham @ 2010-01-08 20:24 UTC (permalink / raw)
To: git
Hi List,
Just wondering if there is an environment variable I can use to tell
git or ssh what user name to use for the ssh transport?
I would normally use
git clone ssh://myname@example.com/repo.git
but I'm cloning to a relatively public network drive (corporate
overlords don't want git no mater what I say) so I want to do
something like
GIT_SSH_USER=myname git clone ssh://example.com/repo.git
So that my user name doesn't show in the resulting remote.origin.url
I know I can probably just remove my user name from the config after
the the fact but I have to do this for a few repos so I thought I'd
ask if there was a magic environment variable I could set.
Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ssh username environment variable
2010-01-08 20:24 ssh username environment variable Chris Packham
@ 2010-01-08 20:29 ` Shawn O. Pearce
2010-01-08 20:34 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Shawn O. Pearce @ 2010-01-08 20:29 UTC (permalink / raw)
To: Chris Packham; +Cc: git
Chris Packham <judge.packham@gmail.com> wrote:
> Just wondering if there is an environment variable I can use to tell
> git or ssh what user name to use for the ssh transport?
No. But you can hack around it:
cat >$HOME/bin/git-ssh
#!/bin/sh
ssh -l $GIT_SSH_USER "$@"
^D
GIT_SSH=$HOME/bin/git-ssh GIT_SSH_USER=myname git clone ...
--
Shawn.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ssh username environment variable
2010-01-08 20:29 ` Shawn O. Pearce
@ 2010-01-08 20:34 ` Junio C Hamano
2010-01-08 20:37 ` Chris Packham
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2010-01-08 20:34 UTC (permalink / raw)
To: Shawn O. Pearce; +Cc: Chris Packham, git
"Shawn O. Pearce" <spearce@spearce.org> writes:
> Chris Packham <judge.packham@gmail.com> wrote:
>> Just wondering if there is an environment variable I can use to tell
>> git or ssh what user name to use for the ssh transport?
>
> No. But you can hack around it:
>
> cat >$HOME/bin/git-ssh
> #!/bin/sh
> ssh -l $GIT_SSH_USER "$@"
> ^D
>
> GIT_SSH=$HOME/bin/git-ssh GIT_SSH_USER=myname git clone ...
I thought the standard answer was "use $HOME/.ssh/config", to set User
by keying on the remote hostname to which you are going.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ssh username environment variable
2010-01-08 20:34 ` Junio C Hamano
@ 2010-01-08 20:37 ` Chris Packham
0 siblings, 0 replies; 4+ messages in thread
From: Chris Packham @ 2010-01-08 20:37 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Shawn O. Pearce, git
On Fri, Jan 8, 2010 at 3:34 PM, Junio C Hamano <gitster@pobox.com> wrote:
> "Shawn O. Pearce" <spearce@spearce.org> writes:
>
>> Chris Packham <judge.packham@gmail.com> wrote:
>>> Just wondering if there is an environment variable I can use to tell
>>> git or ssh what user name to use for the ssh transport?
>>
>> No. But you can hack around it:
>>
>> cat >$HOME/bin/git-ssh
>> #!/bin/sh
>> ssh -l $GIT_SSH_USER "$@"
>> ^D
>>
>> GIT_SSH=$HOME/bin/git-ssh GIT_SSH_USER=myname git clone ...
>
> I thought the standard answer was "use $HOME/.ssh/config", to set User
> by keying on the remote hostname to which you are going.
>
Yeah thats what I've done after reading a few more man pages.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-01-08 20:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-08 20:24 ssh username environment variable Chris Packham
2010-01-08 20:29 ` Shawn O. Pearce
2010-01-08 20:34 ` Junio C Hamano
2010-01-08 20:37 ` Chris Packham
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).