I use subversion on a daily basis; however, I don't use every command frequently so here is a quick list of subversion commands I don't require on a daily basis. I guess this is meant to be a cheat sheet.

Remove all .svn directories

There are a few reasons why you may want to remove all the .svn files. If you preformed a checkout when you should have been performing an export you will want to run the following command. You also may have copied a directory from another project and want to checkin the directory for the new project.

find . -name ".svn" -type d -exec rm -rf {} \;

See what you are about to update

I upload from svn to my web server files. Sometimes I want to see what files will be updated before I run the update. This is how your check.

svn status -u

Comments

Show/Hide Comment form