Is it possible to use a .netrc file on windows when I'm using Git to clone a remote repository with http and user - password?
|
Update April 2013, git 1.8.3: You now can use an encrypted .netrc (with gpg).
That script would allow you to use gpg-encrypted netrc files, avoiding the issue of having your credentials stored in a plain text file.
To enable this credential helper:
Update late 2012, With git version 1.7.9+: This answer from Mark Longair details the credential cache mechanism which allows you to not store your password in plain text as shown below. (Original answer) You must define:
If you are using Windows 7 run the cmd type this:
and the %HOME% will be set to ' then go to it
and make a file called ' Note: for Windows, you need a ' Its content is quite standard (Replace the with your values):
Luke mentions in the comments:
This is indeed what I mentioned in "Trying to “
爱国者 believes in the comments that "it seems that it won't work for http protocol" However, I answered that netrc is used by curl, and works for http protocol, as shown in this example (look for 'netrc' in the page): . Also used with http protocol here: " A common trap with with netrc support on Windows is that git will bypass using it if an origin https url specifies a user name. For example, if your
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = https://bob@code.google.com/p/my-project/
Git will not resolve your credentials via
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = https://code.google.com/p/my-project/
|
|||||||||||
|
|
You can also install git-credential-winstore to save git passwords in Windows credentials manager instead of netrc. This is a more secure way to store password |
|||||||
|