Full SVN console operation

Source: Internet
Author: User
Tags svn client

I have been depressed that there is no turtle SVN client on the Mac. Later I installed one in the virtual machine, but it is not very easy to use. There are various problems (too many errors) Running

No way, you have to use the original SVN console for operations. Here we will briefly describe the common operations.

1. Add operation

SVN add

2. Submit the operation

SVN ci-M "MSG"

3. Delete

SVN RM

4. Undo

SVN revert

5. View operations

SVN St

These are the basic operations. Now let's look at the advanced operations.

1. Delete the missing files in SVN (usually caused by manual deletion)

SVN status | sed-ee '/^! /! D'-E's/^! * (. *)/"\ 1"/G' | xargs-L1 SVN RM

2. submit some newly added files (usually submitted)

SVN status | grep-V "^. [\ t] * \ .. *" | grep "^? "| Awk '{print $2}' | xargs SVN add

SVN commit

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.