Hello All,
I work in an environment where we use SVN for our source repositories. For example my code repository is as below:
//svn
-folder1
-file1
-file2
-folder3
-file4
-file5
but when these get deployed to production / testing server => the directory structure is very different and only files need to be pushed => in relevant folder of the target server
ex:
//d/src/datastream
-file1
-file2
-file3
-file4
target server doesn't have svn installed. Right now its been done as manual process by copying files across. Now its becoming bit hard to track down the version of the target files copied, as this being done by different developers.
How could this deployment process be automated by pushing files into relevant target folder and keep track of svn versions being pushed.
Thanks