Tortoise SVN hidden _svn folders

后端 未结 9 1116
半阙折子戏
半阙折子戏 2021-02-05 15:51

They are specially annoying when I need to upload to the server a web solution.

Is there a way of configuring SVN to create the _svn folders outside my working directory

9条回答
  •  臣服心动
    2021-02-05 16:30

    We use CruiseControl with robocopy in order to create a clean copy of your repository.

     
            C:\Archivos de programa\Windows Resource Kits\Tools\robocopy.exe
            E:\CruiseControl\yourproject\Code\trunk\ E:\wwwroot\yourproject *.* /E /XX /XA:H /XO /NDL /NC /NS /NP /XF "*.cache" "*.designer.cs" "*.sln" "*.msbuild" "*.csproj" "*.PDB" "*.user" "*.designer" /XD .svn App_Code obj Properties
            60
            1,0
     
    

    /XF and /XD arguments excludes the files and the directories you don't want to upload to production.

    You can find more info about robocopy here.

提交回复
热议问题