Your Account
Community
Topics (Upcoming)
More |
View story
Adding Subversion keywords to an entire Symfony project
http://feeds.feedburner.com/~r/symfony/planet/~3/414253620/
Submitted by
narko
13 months, 5 days, 18 hours agoFor some reason, even though I’ve set default properties in my .subversion/config, it doesn’t always apply to new files, so I end up doing this once in a while:
svn propset svn:keywords 'Id Rev URL HeadUrl' \
`find apps/ config/ doc/ lib/ web data/ test/ \
-name '*.php' -or -name '*.yml' -or -name '*.css' -or -name '*.sql'`
This tells...
Tags: none
|