rockstardev
rockstardev

Reputation: 13527

Force "message" on SVN commit?

  1. How can I force a user to type in a description when committing work to a SVN repository?
  2. Is it possible to force the user to type in a specific set of text?

I want a developer to always write a description of the changes he / she made, followed by the words: "IAMSURE" on a new line.

Upvotes: 2

Views: 1431

Answers (1)

manojlds
manojlds

Reputation: 301037

Have a pre-commit hook on the repo that will look for empty message and stop the commit if so.

http://svnbook.red-bean.com/nightly/en/svn.reposadmin.create.html

Upvotes: 3

Related Questions