SVN Access
From Texas Instruments Embedded Processors Wiki
Contents |
Accessing SVN server
On Linux
Setting up Proxy server
To use SVN behind the proxy, edit the file ~/.subversion/servers. Look for the below lines:
[global]
http-proxy-exceptions = *.exception.com, www.internal-site.org
http-proxy-host = defaultproxy.whatever.com (<-- uncomment this line, replace this line with the required proxy)
http-proxy-port = 7000 (<-- uncomment this line, replace this with the right port, usually 80)
Check out the code
Use the below command
svn checkout https://gforge.ti.com/svn/gleslayer If an username is required, use the below line, and a blank password when prompted svn checkout https://gforge.ti.com/svn/gleslayer --username anonymous
On Windows
Use a tool like Tortoise SVN (http://tortoisesvn.net/downloads)
For configuring proxy, right click on the folder that is setup for the repository, Choose TortoiseSVN->Settings->Network and change the proxy as required.
After configuring, right click on the folder, and select "SVN Checkout", and use
svn checkout https://gforge.ti.com/svn/gleslayer
as the command to checkout the repository into the folder.
Details of SVN (Complete usage)
More details on SVN can be found at,
http://svnbook.red-bean.com/en/1.4/svn.tour.html
Leave a Comment