This question shows how to set your proxy credentials for git.
I want to know about two things after you set your credentials using that method:
- Does git send your credentials to the proxy over http or https? (My git repository is 'https://*)
- Are my credentials being sent across the network in the clear?
If yes to question 2, how can I change this so that my credentials are sent over the network more securely?
This is how our proxy server, with a HTTP address, is set up for .gitconfig:
git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
Can anyone confirm if git would use HTTPS if I were using:
git config --global https.proxy http://proxyuser:proxypwd@proxy.server.com:8080