mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:26:01 +02:00
svn-changelist: add page (#5118)
This commit is contained in:
parent
ced772f964
commit
aaae44875f
1 changed files with 24 additions and 0 deletions
24
pages/common/svn-changelist.md
Normal file
24
pages/common/svn-changelist.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# svn changelist
|
||||
|
||||
> Associate a changelist with a set of files.
|
||||
> More information: <http://svnbook.red-bean.com/en/1.7/svn.advanced.changelists.html>.
|
||||
|
||||
- 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}}`
|
Loading…
Add table
Reference in a new issue