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.

Leave a Reply