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
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
I think you can use the same way as usually. Here is a good Cheat Sheet.
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/
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.