Changes between Version 3 and Version 4 of CaffeinatedSubversion


Ignore:
Timestamp:
01/18/11 12:28:33 (13 years ago)
Author:
jdreed
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CaffeinatedSubversion

    v3 v4  
    2020Before making changes, you'll want to ensure you have the latest copy of the code.  `svn update` will get you the latest copy of the code.   
    2121 
    22 {{ 
     22{{{ 
    2323joeuser@athena:~$ svn update 
    2424A foo.c 
     
    3737If you create new files or directories, you'll need to ensure Subversion is aware of them.  You can wait until just prior to the commit to do this, or you can do it as you go.   To add files or directories use `svn add`: 
    3838 
    39 `svn add foo.pl` 
    40 `svn add *.c` 
    41 `svn add subdir` 
     39`svn add foo.pl`[[BR]] 
     40`svn add *.c`[[BR]] 
     41`svn add subdir`[[BR]] 
    4242 
    4343To remove files previously added, use `svn del`: 
    4444 
    45 `svn dell foo.pl` 
    46 `svn del *.c` 
    47 `svn del subdir` 
     45`svn dell foo.pl`[[BR]] 
     46`svn del *.c`[[BR]] 
     47`svn del subdir`[[BR]] 
    4848 
    4949== Reviewing your changes == 
     
    8484If you are in the root directory of a package, and have added a new Changelog entry to `debian/changelog`, you can leave the commit message blank, and the Subversion server will use the contents of the new Changelog entry as the commit message: 
    8585 
    86 `svn commit -m ''` 
     86`svn commit -m ''`[[BR]] 
    8787^(That's two single-quotes, i.e. an empty string)^ 
    8888