Re: [git-users] Re: Git Http Error

2012-08-22 Thread Martin Møller Skarbiniks Pedersen
On 22 August 2012 01:37, Mavin Martin mavinmar...@gmail.com wrote:

[...]

 Do you know much about .netrc?

 This is what I wrote down:

 machine [I tried both client_address.com and server_address.com]

 username mavin

Change it to:

login mavin

 password [my password]

Regards
Martin

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.



Re: [git-users] Re: Git Http Error

2012-08-22 Thread Konstantin Khomoutov
On Tue, 21 Aug 2012 16:37:09 -0700 (PDT)
Mavin Martin mavinmar...@gmail.com wrote:

[...]
 This might fix the issue, the only thing is that it still prompts for
 a username and password. Do you know much about .netrc?
[...]
 When I do a git clone, it still asks for a username and password on
 my Mac Client.  Am I setting it up correctly?

Git client uses libcurl to implement its HTTP[S] transports, so read the
section titled NETRC in the cURL manual [1] to learn the correct
format.

Note that you might consider using transports different from HTTP[S]
for your repositories, for example, the ubiquitous SSH.  Googling
suggests that macs support SSH key agent, so using SSH transport is
easy.

1. http://curl.haxx.se/docs/manual.html
2. https://www.google.com/search?q=mac+ssh+key+agent

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.