Wednesday, April 13, 2011

How to Set Proxy in RabbitVCS Subversion Client

I use RabbitVCS as subversion client in my little Ubuntu box. Since I should work behind proxy, I have set up proxy username and password in RabbitVCS. Don't forget to be root to configure :).

# Go to /etc/subversion
cd /etc/subversion
# There are two files: servers and config. Open servers file
vi servers
# Find [global] section and set proxy host, username, and password
[global]
http-proxy-host = proxy_ip_address
http-proxy-port = proxy_port
http-proxy-username = username
http-proxy-password = password
And you're ready to version your apps. Enjoy!

No comments: