Can I ignore a folder on svn checkout? I need to ignore DOCs folder on checkout at my build server.
edit: Ignore externals isn't an option. I have some externals that I need.
|
1
|
Can I ignore a folder on svn checkout? I need to ignore DOCs folder on checkout at my build server. edit: Ignore externals isn't an option. I have some externals that I need.
|
|||
|
|
|
|
You can't directly ignore folders on a checkout, but you can use sparse checkouts in svn 1.5. For example:
This will check files and directories from your project trunk into 'my_checkout', but not recurse into those directories. Eg:
Then to get the contents of 'bar' down:
|
||
|
|
|
|
With versions prior to 1.5 I have found that if you checkout only the top most folder and then selectively update, from then on updates only effect what you have checked out. Ie.
The -N flag makes the operation non-recursive. The above will not check out anything else at the foo level, eg. say there is a folder But at a later time you can Presumably this also works with 1.5. |
||
|
|
|
|
Ignore externals isn't an option. I have some externals that I need. |
||||
|
|
|
As a few others have mentioned, you can just use svn:externals properties and then the --ignore-externals option when you checkout. One thing to note, however, is that svn:externals does not necessarily need to refer to another repository. It can be a reference to some other folder in the same repo. |
||
|
|
|
|
You could put the docs folder in an external repository and then use |
||
|
|
|
Yes, Subversion 1.5 has a feature called Sparse checkouts that can do exactly this sort of thing. |
||||
|
|
|
No, ignore is only for adding files. |
||
|
|