1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-04 04:15:23 +02:00
tldr/pages/common/svn.md
Managor d1fa35edf6
common/*: reduce usage of "command-line" (part 2) (#16950)
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2025-06-29 11:47:23 +03:00

28 lines
631 B
Markdown

# svn
> Subversion client tool.
> More information: <https://subversion.apache.org>.
- Check out a working copy from a repository:
`svn co {{url/to/repository}}`
- Bring changes from the repository into the working copy:
`svn up`
- Put files and directories under version control, scheduling them for addition to repository. They will be added in next commit:
`svn add {{PATH}}`
- Send changes from your working copy to the repository:
`svn ci -m {{commit_log_message}} [{{PATH}}]`
- Display changes from the last 10 revisions, showing modified files for each revision:
`svn log -vl {{10}}`
- Display help:
`svn help`