A proper git commit message should almost always be multi-line. From the official git-commit discussion,
Though not required, it's a good idea
to begin the commit message with a
single short (less than 50 character)
line summarizing the change, followed
by a blank line and then a more
thorough description. Tools that turn
commits into email, for example, use
the first line on the Subject: line
and the rest of the commit in the
body.
If you're having a hard time getting any commit messages, (talk to your sysadmin and/or) make sure that at least one of the GIT_EDITOR environment variable, the core.editor configuration variable, the VISUAL environment variable, or the EDITOR environment variable is set to something useful.
An option would be to create your own 'editor', which prompts for a short (<50 chars) description, and then a minimum number of characters or sentences. This might not be well received, but that would depend on your position and the culture of your work environment.