How to configure a HTTP proxy for svn

后端 未结 6 741
猫巷女王i
猫巷女王i 2020-12-01 00:49

I want to check code from the repository http://code.sixapart.com/svn/perlbal/ . I can only access the the repository url by setting a proxy. I guess if I want to get the co

6条回答
  •  Happy的楠姐
    2020-12-01 01:13

    Most *nixen understand the environment variable 'http_proxy' when performing web requests.

    export http_proxy=http://my-proxy-server.com:8080/
    svn co http://code.sixapart.com/svn/perlball/
    

    should do the trick. Most http libraries check for this (and other) environment variables.

提交回复
热议问题