Changes between Version 3 and Version 4 of CaffeinatedSubversion
- Timestamp:
- 01/18/11 12:28:33 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CaffeinatedSubversion
v3 v4 20 20 Before 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. 21 21 22 {{ 22 {{{ 23 23 joeuser@athena:~$ svn update 24 24 A foo.c … … 37 37 If 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`: 38 38 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]] 42 42 43 43 To remove files previously added, use `svn del`: 44 44 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]] 48 48 49 49 == Reviewing your changes == … … 84 84 If 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: 85 85 86 `svn commit -m ''` 86 `svn commit -m ''`[[BR]] 87 87 ^(That's two single-quotes, i.e. an empty string)^ 88 88