A few things to keep in mind when configuring VISUALSVN server under Windows

Source: Internet
Author: User

1 Configuring User groups and Users

The user group has higher permissions than the user's permissions,

If a user has read-only permissions and is added to a user group with write permissions, this user can perform a write operation.

2 Add a Hook script to force comments under Pre-commit Hook

The commit fails if the comment does not conform to the string length (or not) when the user commits after it is enabled

@echo off
Setlocal
Set repos=%1
Set txn=%2
REM Check that logmessage contains at least characters
Svnlook Log "%repos%"-T "%txn%" | Findstr "..." > nul.
If%errorlevel% GTR 0 goto ERR
Exit 0
: Err
echo Upload failed! Please add a comment. The comment length is at least 10 characters. Commit aborted! 1>&2
Exit 1

Attention:
1. Need to remove all the space at the end of the line, "..." for the character length, a few characters to write a few.
2. When "' findstr ' is not an internal or external command or a running program", add the system32 path for the system variable path field and restart it

Temporarily put the configuration of the problems encountered and need attention to the record here,

Later find out what needs to be supplemented again to fill up.

A few things to keep in mind when configuring VISUALSVN server under Windows

Related Article

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.