Daily Operations

Basic Work Cycle

Subversion has numerous features, options, bells, and whistles, but on a day-to-day basis, odds are that you will use only a few of them. In this section, we'll run through the most common things that you might find yourself doing with Subversion in the course of a day's work.

The typical work cycle looks like this:

  1. Update your working copy.

svn update

  1. Make changes.

svn add

svn delete

svn copy

svn move

  1. Examine your changes.

svn status

svn diff

  1. Possibly undo some changes.

svn revert

  1. Resolve conflicts (merge others' changes).

svn update

svn resolve

  1. Commit your changes.

svn commit

Since TortoiseSVN in a Windows client integrated with Windows Explorer, these are the underlying commands that will execute when clicking on the different action icons.

For further explanation, please install TortoiseSVN and use the Help File to get the latest description of commands.

TortoiseSVNBasics/4 Daily Operations (last edited 2009-06-18 14:49:52 by GaelHernandez)