Difference between checkout and export in SVN

前端 未结 9 1697
执笔经年
执笔经年 2021-01-30 08:17

What is the exact difference between SVN checkout and SVN export?

From what I know, export does not include the .svn directory which include metadata, and checkout inclu

9条回答
  •  無奈伤痛
    2021-01-30 08:39

    Very simple difference, If you just want to see the structure of your project then go for export.

    And if you want to work on your files then you need to checkout as it will include the .svn folder which contains the metadata which makes the working copy, else you get the error in export.

    If you do svn export and then edit some files and then commit, then you will get an error:

    ../../xxx is not your working copy.

提交回复
热议问题