How do I tell sourcetree where to get proxy imformation. It's not pulling it of the MAC OS X Network Preferences
Because proxy handling is different for each of Mercurial and Git, this needs to be configured in their respective config files; this isn't currently homogenised in the SourceTree preferences. Neither Mercurial or Git picks this up from the Mac settings unfortunately.
Mercurial: edit ~/.hgrc as shown here: http://www.selenic.com/mercurial/hgrc.5.html#http-proxy
Git: edit ~/.gitconfig, add an entry like this:
[http] proxy = hostname:port
This worked for me but if your proxy requires authentication (get a HTTP 407 error) you will need to put username and password in your proxy string. Not the greatest idea in the world, but it works.
[http] proxy = username:password@proxy.example.com:80
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Gracias. De 10 !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is completely unacceptable that this feature is not available after being open for >5 years! This is literally the ONLY dev-related application that I use that does not have proxy features built in. And because it does not, I have to manually configure each of dozens of individual repos with http.proxy settings in the local gitconfig. If I did not have that process already automated, using SourceTree would be a non-starter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, I'll investigate whether it's possible to extract this information and insert it for you in the git / hg configurations in future. This is actually the first time it's come up.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, it's ~ 7 years later and still SourceTree doesn't get system proxy info on Mac. This is a major PITA -- I have a MacBook that travels with me, when in the office I need to use a proxy, otherwise not.
I change my location and everything sorts itself out, except for a few apps (like SourceTree).
Pretty please ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For my mac behind the proxy server, it works.
Hope it works for you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
> If your proxy server uses PAC file, then you can find the proxy server url
This worked like a charm
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For those who would like their Git / SourceTree proxy to change automatically, depending on their location, my workaround is to add this into my .profile (which, incidentally, is symlinked into my Dropbox for syncing across all of my machines):
# proxy probe if nc -zG 1 10.10.10.1 3128 >/dev/null; then export http_proxy=http://10.10.10.1:3128 git config --global http.proxy $http_proxy elif nc -zG 1 192.168.1.112 3128 >/dev/null; then export http_proxy=http://192.168.1.112:3128 git config --global http.proxy $http_proxy else export http_proxy= git config --global --unset http.proxy fi export https_proxy=$http_proxy export all_proxy=$http_proxy
This adjusts environment variables for the current terminal session, and Git's global config for SourceTree. As long as you open a new terminal session sometime before doing any remote work with SourceTree, you're golden.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 for pulling the proxy info from the system. I travel to different locations and sometime use a proxy and sometimes don't. The proxy is set up based on the network configuration type, and it would be nice to have it set automatically, rather than having to configure a file each time I change location. I'm running OSX. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi there,
I know this is an old thread but im stuck on this exact issue. Im trying to access Bitbucket through sourcetree but we have a proxy at work.
I've tried editing the gitconfig file by adding:
[http]
proxy =
hostname
:port
fatal: bad config line 1 in file /usr/local/git/etc/gitconfig
Any ideas?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
[http]
proxy =
hostname
:port
works for me, in mac os sierra
thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 for this request - If I'm using git at the command line, there's a 99% chance that I need different proxy settings than if I'm using Sourcetree (since that's almost always used with Github for me).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It does annoy me that so many UNIX -> Mac applications won't get proxy data from the standard place.
I will have to edit the .hgrcs manually for all my repos to get them to work with SourceTree - a really useful feature
woyld be some way of setting a system-wide proxy - its always the same for my machine no matter where the repo actually lives !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Duh! Explring around the SourceTree GUI I found something that opened up thre .hgrc file for editing. Distant memories lead to mercurials .hgrc documentation
http://www.selenic.com/mercurial/hgrc.5.html
where I discovered the notion of a http_proxy section - adding in the lines below sorted out my problem.
[http_proxy]
host = myproxy.whatever.com:8080
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.