vishy
1
In my university I connect to internet using password authenticated proxy network.
And normal git command to clone a repo
git clone <git url> <repoName>
is not working.
Mentioning connection time out. So is there any client analogous to sourcetree which supports proxy connections.
tsu2
2
Depends what is in your URL.
Depending on the protocol declared in your URL (eg http://) there are various solutions.
Here is the github.io page for configuring proxies
http://cms-sw.github.io/tutorial-proxy.html
On this page for instance, in my http example you’ll see that the help says you can define a git global proxy configuration.
Other common protocols which might be used are ssh and git, and those would require a different solution (on that page).
HTH,
TSU