Quickstart Guide

From ITTC Help
Revision as of 11:38, 21 September 2006 by Wmason (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Adding, Moving, and Removing Files

To add a file, run the following command:

svn add filename ENTER

To move a file, run the following command:

svn move filename newfilename ENTER

To remove a file, run the following command:

svn remove filename ENTER


Checking Your Changes In

To commit your changes to the server for everyone to see, run the following command:

svn commit ENTER

Creating Patch Files

To prepare a patch file for submission to the FLTK team, run the following command:

svn diff >filename.patch ENTER