Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,23 +1,23 @@
# svn
> Subversion command line client tool
> Subversion command line client tool.
- Check out a working copy from a repository
- Check out a working copy from a repository:
`svn co {{url/to/repository}}`
- Bring changes from the repository into the working copy
- 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.
- 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
- Send changes from your working copy to the repository:
`svn ci -m {{commit log message}} {{[PATH...]}}`
- Show detailed help
- Show detailed help:
`svn help`