thinksimple.pl

SVN book

September 23, 2008

Some basic commands for SVN:

svn update       # gets current revision from repository
svn add foo      # adds a new file to the repository
svn status [-v]  # shows local changes
svn diff         # more local changes
svn revert foo   # reverts changes in a file, or changes in properties (un-adds, un-deletes)
# and finally this is how ignoring files should look like:
svn propset svn:ignore '*' path [-R]

More: http://svnbook.red-bean.com/en/1.0/re26.html

SVN add all new files

August 5, 2008

svn status | grep "^?" | awk '{print $2}' | xargs svn add

How to use rails with subversion

March 15, 2008

http://wiki.rubyonrails.org/rails/pages/HowtoUseRailsWithSubversion