files end up in wrong directory after svn copy
        Posted  
        
            by Andy
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Andy
        
        
        
        Published on 2009-05-21T11:22:29Z
        Indexed on 
            2010/04/19
            0:33 UTC
        
        
        Read the original article
        Hit count: 613
        
I want to copy the trunk of one project to another, so I use the following command:
svn copy -m "test" (url of project from)/Trunk/ (url of project to)/Trunk/
The files ended up in (url of project to)/Trunk/Trunk/ instead of (url of project to)/Trunk/ where I want them to go.
Have I done something wrong? What should I do if I do if I want the files in (url of project to)/Trunk/? Doing the the following does not seem to make sense:
svn copy -m "test" (url of project from)/Trunk/ (url of project to)/
© Stack Overflow or respective owner