I would like to ignore a specific named sub-folder from all current and future folders created going 1 level deep.
I have a folder that holds all of the templates I am using to generate files. This folder is itself a collection of folders with the actual templates in them. Something like the following
- Templates
- Create
- magic.template
- unicorn.template
- Update
- fairy.template
- dust.template
- ...
- Create
My build process iterates through all of the folders and converts the templates into actual files. These get placed into a sub-folder called GeneratedTemp. This results in the following structure.
- Templates
- Create
- magic.template
- unicorn.template
- GeneratedTemp
- magic.actual
- unicorn.actual
- Update
- fairy.template
- dust.template
- GeneratedTemp
- fairy.actual
- dust.actual
- ...
- Create
What I would like to do is ignore all sub-folders of Templates\XXX that are named GeneratedTemp. Is this possible? And how?
You can add svn property for folders containing GeneratedTemp. Change directory to /Templates and execute:
This will set svn:ignore property for all folders in /Templates folder. Note that it will clear all previous svn:ignore properties set for these folders if any (in this case you should use svn propedit).