You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@subversion.apache.org by "Johan Corveleyn (Jira)" <ji...@apache.org> on 2021/03/09 10:00:00 UTC

[jira] [Closed] (SVN-4871) How to Prevent SVN commits if the Valid number is not entered

     [ https://issues.apache.org/jira/browse/SVN-4871?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Johan Corveleyn closed SVN-4871.
--------------------------------
    Resolution: Invalid

Please direct such usage-type questions to our users mailinglist (see http://subversion.apache.org/mailing-lists.html#users-ml). We try to reserve our issue tracker for confirmed issues that have had prior discussion on one of our mailinglists. Therefor I'm closing this issue as invalid.

I see that almost simultaneously a mail with the same question was sent to users@. I'm guessing that's you (or someone you work with). Please follow up further via the mailinglist:
https://lists.apache.org/thread.html/r37a0799f5ee2e2abe2731db6e2962a910b1b010b4e097ec9cfebab23%40%3Cusers.subversion.apache.org%3E

For some reason my own reply to that thread isn't shown in the above "threaded view", so I'm linking it here also directly, just in case:
https://lists.apache.org/thread.html/r73fdd9c9b0196bb8771fca89432583bb6d160140eff831b329505086%40%3Cusers.subversion.apache.org%3E

> How to Prevent SVN commits if the Valid number is not entered
> -------------------------------------------------------------
>
>                 Key: SVN-4871
>                 URL: https://issues.apache.org/jira/browse/SVN-4871
>             Project: Subversion
>          Issue Type: Test
>            Reporter: Ragnar
>            Priority: Major
>
> Hello i need help regarding SVN , how can i prevent if people do not enter with Letter DE followed by 3 or 4 number (e.g DE123 or DE1234) in svn log message while doing commit.below is the configurating i have in my pre-commit bat file.
> @echo off
> ::
> :: Stops commits that have empty log messages and include DE #
> ::
>  
> setlocal
>  
> rem Subversion sends through the path to the repository and transaction id
> set REPOS=%1
> set TXN=%2
>  
> rem check for an empty log message
> svnlook log %REPOS% -t %TXN% | findstr . > null
> if %errorlevel% gtr 0 (goto err) else exit 0
>  
> :err
> echo. 1>&2
> echo Your commit has been blocked because you didn't give any log message 1>&2
> echo Please write a log message describing the changes to the defect and 1>&2
> echo then try committing again. -- Thank you 1>&2
> exit 1
> Share 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)