1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/svn-changelist.md
Managor a5833ce758
*: make more information links dynamic (#16244)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-04-23 10:24:12 +03:00

24 lines
725 B
Markdown

# svn changelist
> Associate a changelist with a set of files.
> More information: <https://subversion.apache.org/>.
- Add files to a changelist, creating the changelist if it does not exist:
`svn changelist {{changelist_name}} {{path/to/file1}} {{path/to/file2}}`
- Remove files from a changelist:
`svn changelist --remove {{path/to/file1}} {{path/to/file2}}`
- Remove the whole changelist at once:
`svn changelist --remove --recursive --changelist {{changelist_name}} .`
- Add the contents of a space-separated list of directories to a changelist:
`svn changelist --recursive {{changelist_name}} {{path/to/directory1 path/to/directory2 ...}}`
- Commit a changelist:
`svn commit --changelist {{changelist_name}}`