#!/bin/sh svn remove log/* svn commit -m"removing log files" svn propset svn:ignore "*.log" log/ svn update log/ svn commit -m 'Ignoring all files in /log/ ending in .log' svn move config/database.yml config/database.example svn commit -m 'Moving database.yml to database.example to provide a template for anyone who checks out the code' svn propset svn:ignore "database.yml" config/ svn update config/ svn commit -m 'Ignoring database.yml' svn remove tmp/* svn propset svn:ignore "*" tmp/ svn update tmp/ svn commit -m "ignore tmp/ content from now" svn propset svn:ignore ".htaccess" config/ svn update config/ svn commit -m 'Ignoring .htaccess' svn propset svn:ignore "dispatch.fcgi" config/ svn update config/ svn commit -m 'Ignoring dispatch.fcgi'
Never been to CodeSnippets before?
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)
Subversion Configuration Script for Your Rails Application (See related posts)
You need to create an account or log in to post comments to this site.
Related Posts
» Bash script to perform initi... in rails shell svn bash script
» Bulk svn actions (usefull wi... in ruby rails svn subversion
» create a rails app from rail... in ruby rails shell svn bash subversion rubyonrails
» Typo under lighttpd in lighttpd ruby rails typo ruby-fcgi
» Locking your Rails app to sp... in rails gems environments version locking
» Clean Textpattern install fr... in installation textpattern svn
Snippets (source code soon to be available) developed by Peter Cooper and powered by Ruby On Rails