Possible to svn export and include unversioned files?

前端 未结 3 984
终归单人心
终归单人心 2021-01-15 12:09

I would like to export my code from the working svn copy while including all unversioned files. For example, there are uploaded images/config files etc, that I would like in

3条回答
  •  北恋
    北恋 (楼主)
    2021-01-15 12:45

    What do you mean by "export"? You can just use cp -r to copy the directory tree directly, and then remove the .svn directories afterwards: find . -name .svn -type d -exec rm -r '{}' \;

提交回复
热议问题