Forrest logo
back to context overview

svn

List of commands for svn:

  • svn:tldr:06862 svn: Show detailed help.
    $ svn help
    try on your machine
    explain this command
  • svn:tldr:0eb34 svn: Bring changes from the repository into the working copy.
    $ svn up
    try on your machine
    explain this command
  • svn:tldr:6456a svn: Display changes from the last 10 revisions, showing modified files for each revision.
    $ svn log -vl ${10}
    try on your machine
    explain this command
  • svn:tldr:c0ccb svn: Put files and directories under version control, scheduling them for addition to repository. They will be added in next commit.
    $ svn add ${PATH}
    try on your machine
    explain this command
  • svn:tldr:c5ba3 svn: Send changes from your working copy to the repository.
    $ svn ci -m ${commit_log_message} [${PATH}]
    try on your machine
    explain this command
  • svn:tldr:e3ad5 svn: Check out a working copy from a repository.
    $ svn co ${url-to-repository}
    try on your machine
    explain this command
back to context overview