SubVersion Basic Commands

I started using Subversion for a web programming project. Just sharing a typical work cycle when using Subversion. For an in-depth look at each command, just visit Subversion’s documentation online.
Updating your working copy:
svn update
Making changes:
svn add, svn delete, svn copy, svn move
Examining your changes:
svn status, svn diff
Undoing changes:
svn revert
Resolving Conflicts (Merging):
svn update, svn resolved
Committing your [...]

WordPress Subversion Checkout

I finally converted several of my blogs to use the WordPress Subversion Checkout. This means any future upgrades are directly taken from the WordPress Repository using the Subversion checkout command. Future upgrades are going to be fast, easy and convenient. No more downloading and FTPing of files. It takes just a simple command to upgrade [...]