I know to set a proxy in git open a command prompt and run the following commands replacing USERNAME, PASSWORD, PROXY_ADDRESS, and PROXY_PORT with your network's information:
git config --global --add http.proxy http://USERNAME:PASSWORD@PROXY_ADDRESS:PROXY_PORT
git config --global --add https.proxy http://USERNAME:PASSWORD@PROXY_ADDRESS:PROXY_PORT
but problem is that I have my email as a username that is in form of username@host.com
and password is in the form of <some-text>@<some-digit>
so everytime I try to use git it given me error like this Could not resolve proxy: 1001@10.151.0.16
and nothing else.