From b3e4bc779970ec5787a2db863fbe6a55246325aa Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Mon, 27 Jan 2014 19:09:15 +0100 Subject: [PATCH] Add tldr page for subversion command line client tool --- osx/svn.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 osx/svn.md diff --git a/osx/svn.md b/osx/svn.md new file mode 100644 index 000000000..c781fabfe --- /dev/null +++ b/osx/svn.md @@ -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`