Difference between checkout and export in SVN

前端 未结 9 1584
执笔经年
执笔经年 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条回答
  •  闹比i
    闹比i (楼主)
    2021-01-30 08:45

    svn export simply extracts all the files from a revision and does not allow revision control on it. It also does not litter each directory with .svn directories.

    svn checkout allows you to use version control in the directory made, e.g. your standard commands such as svn update and svn commit.

提交回复
热议问题