Never been to DZone Snippets 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

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

rails related svn configurator

   1  
   2  #!/bin/sh
   3  svn remove log/*
   4  svn commit -m"removing log files" 
   5  svn propset svn:ignore "*.log" log/
   6  svn update log/
   7  svn commit -m 'Ignoring all files in /log/ ending in .log'
   8  svn move config/database.yml config/database.example
   9  svn commit -m 'Moving database.yml to database.example to provide a template for anyone who checks out the code'
  10  svn propset svn:ignore "database.yml" config/
  11  svn update config/
  12  svn commit -m 'Ignoring database.yml'
  13  svn remove tmp/*
  14  svn propset svn:ignore "*" tmp/
  15  svn update tmp/
  16  svn commit -m "ignore tmp/ content from now" 
  17  svn propset svn:ignore ".htaccess" config/
  18  svn update config/
  19  svn commit -m 'Ignoring .htaccess'
  20  svn propset svn:ignore "dispatch.fcgi" config/
  21  svn update config/
  22  svn commit -m 'Ignoring dispatch.fcgi'
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS