Archive for Open Source

BarCamp Pune 6

Barcamp Pune 6 is again in town this Saturday i.e 14th Nov 2009.

For all those who are not aware of the BarCamp , Navin Kabra of PuneTech.com has written two amzing blog post about barcamp here “What is Barcamp?” and if you are student then “Why should student attend barcamp?

Will update this post with the coverage from Barcamp tomorrow.

 

Comments (1)

How to make SVN ignore some folders

I spent lots of time searching this. SVN Red book http://svnbook.red-bean.com/ do not explain it properly. So here i am trying to Explain it.

1. Make sure you have SVN_EDITOR veriable set.

2. Type following command  on Terminal

svn propset svn:ignore “*” log/

this will ignore all the logs file from your rails folder structure. You have to delete all the logs file before running this command.

3. If you want specifically Ignore only one file from directory e.g i want to ignore schema.rb from db director into rails folder structure.

svn propset svn:ignore “schema.rb” db/

4. Commit and apply changes

Done.

Leave a Comment

Follow

Get every new post delivered to your Inbox.