Project

General

Profile

Actions

Defect #16

closed

These files should be moved out of revision control...

Added by Chris Grant about 17 years ago. Updated almost 17 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Affected version:

Description

Because temporary and log files shouldn't be under version control...

[DONE] Remove log files and ignore in future:
svn remove log/*
svn commit -m "Removed all files within log/"

svn propset svn:ignore "*" log/
svn update log/
svn commit -m "Ignoring all files within log/"

[DONE] Remove temporary files and ignore in future:
svn remove tmp/*
svn commit -m "Removed all files within tmp/"

svn propset svn:ignore "*" tmp/
svn update tmp/
svn commit -m "Ignoring all files within tmp/"

-----------
Because files in the files/ directory shouldn't be under version control...

[DONE] Remove any files within files/ directory and ignore in future:
svn remove files/*
svn commit -m "Removed all files within files/"

svn propset svn:ignore "*" files/
svn update files/
svn commit -m "Ignoring all files within files/"

-----------
Because everyone has their own database.yml and schema.rb files...

[TODO] Move config/database.yml to template-like config/database.yml.example:
svn move config/database.yml config/database.yml.example
svn commit -m "Moved database.yml to database.yml.example to act as a tempate"

[TODO] Ignore config/database.yml when the user creates it:
svn propset svn:ignore "database.yml" config/
svn update config/
svn commit -m "Ignoring config/database.yml"

[TODO] Remove db/schema.rb and ignore in future:
svn remove db/schema.rb
svn commit -m "Removed db/schema.rb"

svn propset svn:ignore "schema.rb" db/
svn update db/
svn commit -m "Ignoring db/schema.rb"

-----------
Because some people have to make changes to dispatch files...

[TODO] Move public/dispatch.* to public/dispatch.*.example:
svn move public/dispatch.rb public/dispatch.rb.example
svn move public/dispatch.cgi public/dispatch.cgi.example
svn move public/dispatch.fcgi public/dispatch.fcgi.example
svn commit -m "Moved public/dispatch.* to public/dispatch.*.example"

[TODO] Ignore public/dispatch.* files:
svn propset svn:ignore "dispatch.*" public/
svn update public/
svn commit -m "Ignoring public/dispatch.*"


If there's anything I've missed, just kick in a comment.

Thanks,
-Chris

Actions #1

Updated by Jean-Philippe Lang almost 17 years ago

Done.

Actions

Also available in: Atom PDF