export는 대개 서버의 버전에서 관리용 .svn 디렉토리를 빼고 받아오지만
수정중인 워킹 카피에서 깔끔(?)하게 .svn을 지우는 방법으로
해당 워킹 카피를 export 해버리면 된다. 


a-wc는 원본 워킹 카피의 경로(절대 경로 던 상대경로 던)
my-export는 a-wc를 export할 목적지 경로이다.

Export from your working copy (doesn't print every file and directory):

$ svn export a-wc my-export
Export complete.
Export directly from the repository (prints every file and directory):

$ svn export file:///var/svn/repos my-export
A    my-export/test
A    my-export/quiz
Exported revision 15.

[링크: http://svnbook.red-bean.com/en/1.7/svn.ref.svn.c.export.html
Posted by 구차니