tags:

views:

33

answers:

3

Hi all,

SVN is hosted on a windows machine & i need to access it from a linux shell script. Please can anyone help me on this. any help would be appreciable. Thanx

+1  A: 

I think you can use the same way as usually. Here is a good Cheat Sheet.

Sebastian Thiele
rads
do i need to install any client on my linux system or what are the commands i can use to access the repository on windows.
rads
@rad: no, that shows how to use SVN on Linux via the command line (which is how you usually do it there). It does not matter what it's hosted on.
Michael Borgwardt
A: 

Maybe you are looking for an equivalent TurtoiseSVN under windows for Linxu (I hope I've understood your question correctly!). If this is the case, have a look at this post: http://www.linuxquestions.org/questions/linux-software-2/tortoise-svn-equivalent-in-linux-645058/

Marwan
A: 

Did you try the command svn help ? If you get an error message that means svn is not installed on your linux machine. So you have to install it first. Google install svn ubuntu or whatever your linux distribution is.

Then you have to checkout the code from your windows machine. The command is svn checkout "/path/to/source/code/"

Then you can use the usual svn commands. The cheat sheet suggested by Sebastian is a good start.

Chrys