On Thu, Dec 11, 2008 at 12:16 PM, Marcus <[email protected]> wrote: > > On Dec 11, 6:40 pm, "Ed Howland" <[email protected]> wrote: >> This always confused me. >> >> cd app >> svn up >> find tmp -type d | grep -v svn| xargs -L1 svn propset svn:ignore '*' >> svn commit -m "ignoring app/tmp in subversion" > > This isn't a good solution: If you check out your project on another > machine, the whole 'tmp' directory and its structure is missing.
It worked for me I did two commit+checkout round trips, and the tmp structure was maintained. I did have to svn rm the old cache files, but now svn st reports no changes. I think that works because the pattern supplied was '*' and svn propset does not apply that to directories. Let me know if you have a different experience. Ed > > Marcus > > > -- Ed Howland http://greenprogrammer.blogspot.com http://twitter.com/ed_howland --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
