If you work in PHP (or, I suppose, in some programming language) and use Subversion as the initial control, is there a way to take your project (for example):
C: \ Projects \ Test \ .svn
C: \ Projects \ Test \ Docs \
C: \ Projects \ Test \ faq.php
C: \ Projects \ Test \ guestbook.php
C: \ Projects \ Test \ index.php
C: \ Projects \ Test \ test.php
and create / copy / anything to filter out certain files and become:
C: \ Projects \ Test \ faq.php
C: \ Projects \ Test \ guestbook.php
C: \ Projects \ Test \ index.php
automatically? I'm tired of creating a branch, and then go through the branch and delete all the ".svn" folders, the docs directory and my prototype files.
I know that maybe I can use the .bat file only to copy the specific files that I want, but I was hoping that using subversion there was some way to pseudo ignore the file, to where it would still be versioned him, but where could you take a snapshot of a project that ignores the files you said to pseudo ignore.
I know that I read somewhere on the Internet about some functionality that, at least, allows copying without .svn folders, but I can not find it now
source share