SVN ignores repo export

We have several files (bash scripts) that we put in the project repo, but we want to be ignored when exporting the repo to deploy them.

Is it possible?

+2


source to share


3 answers


It looks like you are trying to get svn to do something that would be more correct using a build automation system. Depending on your environment and goals, Make, Ant, NAnt, or something might be appropriate. In simpler cases, a shell script will do the same.



+2


source


I do not think that's possible.



You will need to write a script that exports the project and then removes anything that needs to be removed.

0


source


No, but you can delete them after export.

0


source







All Articles