You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is from a committer who has commit rights to the Subversion project
itself and a user of Scala, which is a great language, thank you!
Please add a pre-commit script to reject commits without a log
message, as not having a log message is bad practice and makes
it harder for people to see and determine what work is done.
Example recent revisions with no log message include r12785, r12780,
r12772.
Please add this to your pre-commit, changing SVNLOOK to point at
the svnlook binary on your system.
#Make sure that the log message contains some text.
SVNLOOK=/usr/local/bin/svnlook
$$SVNLOOK log -t "$$TXN""$$REPOS"| grep "[a-zA-Z0-9]">/dev/null|| {
echo "$$0: no log message for txn $$TXN"1>&2
exit 1
}
It would be good to ask those authors with no commit message to
go back and add one using this command:
$$ svn propedit --revprop -r N svn:log
Regards,
Blair
The text was updated successfully, but these errors were encountered:
@fsalvi said:
Why not, but is it really better to have "fix" or "update" instead of nothing ?
I'm afraid we can't force people to add log messages if they don't want to do it...
Hello,
This is from a committer who has commit rights to the Subversion project
itself and a user of Scala, which is a great language, thank you!
Please add a pre-commit script to reject commits without a log
message, as not having a log message is bad practice and makes
it harder for people to see and determine what work is done.
Example recent revisions with no log message include r12785, r12780,
r12772.
Please add this to your pre-commit, changing SVNLOOK to point at
the svnlook binary on your system.
It would be good to ask those authors with no commit message to
go back and add one using this command:
Regards,
Blair
The text was updated successfully, but these errors were encountered: