首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

Configure SVN for your rails app

2012-12-24 
Configure SVN for your rails app.http://gist.github.com/609762#!/bin/shsvn remove log/*svn commit -

Configure SVN for your rails app.

http://gist.github.com/609762#!/bin/shsvn 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.examplesvn 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’

热点排行