Skip to content

Commit

Permalink
Add tldr page for subversion command line client tool
Browse files Browse the repository at this point in the history
  • Loading branch information
britter committed Jan 28, 2014
1 parent fa6e037 commit 6f09481
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pages/osx/svn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# svn

> Subversion command line client tool
- 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...]}}`

- Show detailed help

`svn help`

0 comments on commit 6f09481

Please sign in to comment.