[Osbootcamp-devel] svn mini-how-to
Status: Beta
Brought to you by:
rossand
From: Andrew R. <gr...@ro...> - 2008-07-03 18:50:32
|
Hi Everyone, Here are some basic instructions regarding the use of subversion for osbootcamp's web site. To make a copy of the code: To create a work area where you can see and change the bootcamp website files: svn co <https://osbootcamp.svn.sourceforge.net/svnroot/osbootcamp> https://osbootcamp.svn.sourceforge.net/svnroot/osbootcamp ~/osbootcamp You can create as many copies as you need. For example, if you're working on two different things at the same time, why not create two work areas? To see what you changed: (using some work I recently did as an example) svn status M contact.php M index.php M osbc7.php M sponsors.php M home.php To see the differences: The svn diff command will show you what you changed in the file and a little bit of the surrounding text for context. - prefaces the old line in the file + prefaces the new line in the file e.g. svn diff osbc7.php Index: osbc7.php =================================================================== --- osbc7.php (revision 2) +++ osbc7.php (working copy) @@ -5,7 +5,7 @@ <p>Food will be provided courtesy of the Talent First Network.<br /> Door prizes are provided by Ingres corporation and will be raffled off at the end of the day.<br /></p> <p><b>Agenda/Speakers:</b></p> - <p>17:05-17:10 - Welcome & OSBC introduction - Andrew Ross<br /> + <p>17:05-17:10 - Welcome & OSBOOTCAMP introduction - Andrew Ross<br /> 17:10-17:20- Talent First Network - Rowland Few from Carleton/TFN<br /> 17:20-18:05 - Eclipse foundation - Wayne Beaton<br /> 18:05-18:50 - DTP and the Ingres DTP plugin - Jo Peel<br /> To create a patch file: svn diff > fix_spelling.patch To commit the changes back to the repository: Please NOTE: I'll grant you access to commit in time once you're trained. use the svn commit command with a concise but meaningful explanation e.g. svn commit -m "Fixed some spelling mistakes in osbootcamp files." Andrew |