September 2009
Beginner
942 pages
85h 34m
English
changelist
svn changelistname target... svn changelist --removename target...
Group files for operations into named collections. This makes it easier to work or multiple groups of files.
Alternate names: cl
Changes: working copy
Accesses repository: no
| --changelist name, -cl name |
| --depth arg |
| --quiet (-q) |
| --remove |
| --targets filename |
Edit three files, add them to a changelist, then commit only files in that changelist.:
$svn changelist issue1729 foo.c bar.c baz.cPath "foo.c" is now a member of changelist 'issue1729'. Path "bar.c" is now a member of changelist 'issue1729'. Path "baz.c" is now a member of changelist 'issue1729'. $svn statusA someotherfile.c A test/sometest.c --Changelist 'issue1729': A foo.c A bar.c A baz.c $svn commit --changelist issue1729 -m "Fixing Issue 1729"Adding foo.c Adding bar.c Adding baz.c Transmitting file data... Committed revision 2 $svn statusA someotherfile.c A test/sometest.c