Quickstart Guide
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