GitHub Windows client behind proxy

Add these entries to your ‘.gitconfig’ file in your user directory (go to %USERPROFILE%): [http] proxy = http://<proxy address>:<proxy port> [https] proxy = https://<proxy address>:<proxy port> And if you don’t want to store your password in plaintext, I would use a local proxy forwarder like CNTLM which allows you to direct all traffic through it … Read more

Where is git.exe located?

If you’re using GitHub for Windows, git.exe may not be in your PATH, but you may find it in a location like: C:\Users\<username>\AppData\Local\GitHub\PortableGit_<numbersandletters>\bin\git.exe That’s the situation for me, in Windows 7 + version 1.0 of GitHub for Windows. In Windows 10 it appears to be in: C:\Users\<username>\AppData\Local\GitHub\PortableGit_<numbersandletters>\cmd\git.exe ( \cmd versus \bin) From GitHub Desktop 1.1 … Read more