Archive for December, 2008
Protected: Soon Coming with complete Info…
Posted by firstruby on December 23, 2008
Posted in Useful Links | Enter your password to view comments.
Copy/Move files in SVN repository
Posted by firstruby on December 1, 2008
To copy a file/directory in working directory or in otherdirectory,
svn move SOURCE DESTINATION
if you want to move ‘app’ folder from working directory into /trunk,
svn move app /trunk/app
it will move ‘app’ folder in ‘/trunk/app’ folder.
Similarly to copy the files,
——————————————–
svn copy SOURCE DESTINATION
if you want to copy ‘app’ folder from working directory into /trunk,
svn copy app /trunk/app
it will copy ‘app’ folder in ‘/trunk/app’ folder.
Posted in Useful Links | Leave a Comment »