Svn command Summary

Source: Internet
Author: User
Tags svn update
1. Checkout the file to the local directory.

SVN checkout path (path is the directory on the server) for example: SVN checkout SVN: // 192.168. 1.1/Pro/domain Abbreviation: SVN Co

2. Add new files to the version Library

SVN add file for example: SVN add test. php (add test. php) SVN add *. php (add all PHP files in the current directory)

3. Submit the modified file to the version library.

Svn commit-m "LogMessage" [-N] [-- no-unlock] PATH (if you choose to keep the lock, use the-no-unlock switch) for example: svn commit-m "add test file for my test" test. php Abbreviation: svn ci

4. Lock/unlock

Svn lock-m "LockMessage" [-- force] PATH for example: svn lock-m "lock test file" test. php svn unlock PATH

5. Update to a specific version.

Svn update-r m path. For example, if svn update is not followed by a directory, all files in the current directory and subdirectory are updated to the latest version by default. Svn update-r 200 test. php (restores the file test. php In the version library to version 200) svn update test. php (updated, synchronized in the version library. If an expiration prompt is prompted during submission, it is because of a conflict. You need to update the file, modify the file, clear svn resolved, and then submit commit.

6. view the file or directory status. 1) SVN status path (the status of the files and subdirectories under the directory. The status is normal)

【? : Not under svn control; M: The content is modified; C: A conflict occurs; A: It is scheduled to be added to the version Library; K: it is locked]

2) SVN status-V path (displays the status of files and subdirectories)

The first column remains the same, the second column displays the working version number, and the third and fourth columns show the last modified version number and modifier. Note: svn status, svn diff, and svn revert commands can be executed without a network, because svn is locally deployed. svn retains the original copy of the local version. Abbreviation: svn st

7. delete an object

Svn delete path-m "delete test fle" For example: svn delete svn: // 192.168.1.1/pro/domain/test. php-m "delete test file" or directly svn delete test. php and svn ci-m 'delete test file'. We recommend that you use this abbreviation: svn (del, remove, rm)

8. View logs

Svn log path, for example, svn log test. php, displays all the modification records of this file, and changes to its version number.

9. View File details

Svn info path, for example, svn info test. php

10. Differences

Svn diff path (compare the modified file with the basic version) for example: svn diff test. php svn diff-r m: n path (for version m and version n are different) for example: svn diff-r 200:201 test. php Abbreviation: svn di

11. Merge the differences between the two versions into the current file.

Svn merge-r m: n path for example: svn merge-r 200: 205 test. php (merge the differences between version 200 and version 205 to the current file, but there are usually conflicts. You need to handle them)

12. SVN help

Svn help ci

--------------------------

The above are common commands. Below are a few

--------------------------

13. List of files and directories in the version Library

Svn list path: displays all files and directories in the path directory that belong to the version library. Short for: svn ls

14. Create a new directory under Version Control

Svn mkdir: Create a new directory under version control. Usage:

1. mkdir path...

(Each directory specified by the working copy PATH will be created on the local end and added to the new scheduling for the next submission .)

2. mkdir URL...

(Each directory specified with a URL is created by submitting it to the repository immediately .)

In both cases, all the intermediate directories must exist in advance.

15. Restore local modification

Svn revert: restore the original unchanged working copy file (recover most local modifications ). Revert: Usage: revert PATH... Note: The sub-commands do not access the network and will release the conflict. However, it does not restore the deleted directory.

16. code library URL change

Svn switch (sw): update the working copy to different URLs. Usage:

1. Switch URL [path]

(Update your work copy and map it to a new URL. The behavior is similar to "svn update", and the files on the server are merged with local files. This is a method that maps a work copy to a branch or tag in the same repository .)

2. Switch-relocate from to [path...]

(Rewrite the URL metadata of the working copy to reflect the changes on the simple URL. When the root URL of the Repository changes (for example, the solution name or host name changes ), however, when the working copy is still mapped to the same directory in the same warehouse, use this command to update the correspondence between the working copy and the warehouse .)

17. Conflict Resolution

Svn resolved: the "Conflict" Status of directories or files that remove working copies. Usage: resolved PATH... Note: subcommands do not follow the syntax to resolve conflicts or remove conflicting tags. They only remove conflicting files and then allow the PATH to be submitted again.

18. output the content of the specified file or URL.

Svn cat target [@ version]… If a version is specified, search for it from the specified version. Svn cat-r PREV filename> filename (PREV is the previous version, you can also write a specific version number, so that the output result can be submitted)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.