{
    "mode": "man",
    "parameter": "svn",
    "section": "",
    "url": "https://www.chedong.com/phpMan.php/man/svn/json",
    "generated": "2026-06-09T23:57:24Z",
    "synopsis": "svn command [options] [args]",
    "sections": {
        "NAME": {
            "content": "svn - Subversion command line client tool\n",
            "subsections": []
        },
        "SYNOPSIS": {
            "content": "svn command [options] [args]\n",
            "subsections": []
        },
        "OVERVIEW": {
            "content": "Subversion  is  a  version control system, which allows you to keep old versions of files and\ndirectories (usually source code), keep a log of who, when, and why changes  occurred,  etc.,\nlike  CVS,  RCS or SCCS.  Subversion keeps a single copy of the master sources.  This copy is\ncalled the source ``repository''; it contains all the information to permit extracting previ‐\nous versions of those files at any time.\n\nFor more information about the Subversion project, visit http://subversion.apache.org.\n\nDocumentation for Subversion and its tools, including detailed usage explanations of the svn,\nsvnadmin, svnserve and svnlook programs, historical background, philosophical approaches  and\nreasonings, etc., can be found at http://svnbook.red-bean.com/.\n\nRun `svn help' to access the built-in tool documentation.\n\n\n\nsvn(1)",
            "subsections": []
        }
    },
    "summary": "svn - Subversion command line client tool",
    "flags": [],
    "examples": [],
    "see_also": [],
    "tldr": {
        "source": "official",
        "description": "Subversion client tool.",
        "examples": [
            {
                "description": "Check out a working copy from a repository",
                "command": "svn {{co|checkout}} {{file:///path/to/repository}}"
            },
            {
                "description": "Bring changes from the repository into the working copy",
                "command": "svn {{up|update}}"
            },
            {
                "description": "Put files and directories under version control, scheduling them for addition to repository. They will be added in next commit",
                "command": "svn add {{path/to/file_or_directory}}"
            },
            {
                "description": "Send changes from your working copy to the repository",
                "command": "svn {{ci|commit}} {{-m|--message}} {{commit_log_message}} {{path/to/directory}}"
            },
            {
                "description": "Display changes from the last 10 revisions, showing modified files for each revision",
                "command": "svn log {{-vl|--verbose --limit}} {{10}}"
            },
            {
                "description": "Display help",
                "command": "svn {{h|help}}"
            }
        ]
    }
}