2021-01-10 20:15:05 +01:00
|
|
|
# svn changelist
|
|
|
|
|
|
|
|
> Associate a changelist with a set of files.
|
2025-08-16 21:12:49 +03:00
|
|
|
> More information: <https://svnbook.red-bean.com/en/1.7/svn-book.html#svn.ref.svn.c.changelist>.
|
2021-01-10 20:15:05 +01:00
|
|
|
|
|
|
|
- Add files to a changelist, creating the changelist if it does not exist:
|
|
|
|
|
2025-08-16 21:12:49 +03:00
|
|
|
`svn {{[cl|changelist]}} {{changelist_name}} {{path/to/file1 path/to/file2 ...}}`
|
2021-01-10 20:15:05 +01:00
|
|
|
|
|
|
|
- Remove files from a changelist:
|
|
|
|
|
2025-08-16 21:12:49 +03:00
|
|
|
`svn {{[cl|changelist]}} --remove {{path/to/file1 path/to/file2 ...}}`
|
2021-01-10 20:15:05 +01:00
|
|
|
|
|
|
|
- Remove the whole changelist at once:
|
|
|
|
|
2025-08-16 21:12:49 +03:00
|
|
|
`svn {{[cl|changelist]}} --remove {{[-R|--recursive]}} --changelist {{changelist_name}} .`
|
2021-01-10 20:15:05 +01:00
|
|
|
|
|
|
|
- Add the contents of a space-separated list of directories to a changelist:
|
|
|
|
|
2025-08-16 21:12:49 +03:00
|
|
|
`svn {{[cl|changelist]}} {{[-R|--recursive]}} {{changelist_name}} {{path/to/directory1 path/to/directory2 ...}}`
|
2021-01-10 20:15:05 +01:00
|
|
|
|
|
|
|
- Commit a changelist:
|
|
|
|
|
|
|
|
`svn commit --changelist {{changelist_name}}`
|