> I am tempted to say that there should be a way to somehow forbid use > of the "-m" option to "git commit" by default, until the user gains > more familiarity with use of Git. Since I am using git, I am tempted to say that "git commit -m" should be abolished. If I tell somebody how to use git, I never mention "git commit -m". Unluckily they find it out themselves... ;D The typical observations I have when people use "git commit -m": * The commit messages are either too long (in one line!) or too meaningless. * People don't check what they added and commit wrong stuff. * People make fast temporary commits with "asdafsd" commit messages. Then they get distracted for some time and work on another branch. When they turn back to the old branch they don't know what "asdafsd" was... Thanks to git rebase -i and/or git commit --amend, it is all not too bad after all ;D Best Stephan