Une alternative à CNTLM sous windows
J'ai "juste" eu à taper :
pour le faire marcher pour mon proxy d'entreprise oO
Merci ! (il utilise les crédentials Windows et le PAC des options internet par défaut)
I fixed this issue for several of my colleagues by running the following two commands:
git config --global url."https://github.com/".insteadOf git@github.com:
git config --global url."https://".insteadOf git://
One thing we noticed is that the .gitconfig used is not always the one expected so if you are on a machine that modified the home path to a shared drive, you need to ensure that your .gitconfig is the same on both your shared drive and in c:\users[your user]\
Utiliser un proxy anonyme dans powershel... (notamment cntlm...)
$proxyAddress = "http://localhost:3228"
$proxyUri = new-object System.Uri($proxyAddress)
[System.Net.WebRequest]::DefaultWebProxy = new-object System.Net.WebProxy ($proxyUri, $true)