From aaae44875fec514c0b02f242a0d831a6299aa186 Mon Sep 17 00:00:00 2001 From: Jonas Date: Sun, 10 Jan 2021 20:15:05 +0100 Subject: [PATCH] svn-changelist: add page (#5118) --- pages/common/svn-changelist.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/svn-changelist.md diff --git a/pages/common/svn-changelist.md b/pages/common/svn-changelist.md new file mode 100644 index 0000000000..2917855bf3 --- /dev/null +++ b/pages/common/svn-changelist.md @@ -0,0 +1,24 @@ +# svn changelist + +> Associate a changelist with a set of files. +> More information: . + +- 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}}`