Gancho Git para impor a mensagem de confirmação no formato “# |

$ vi .git/hooks/commit-msg

#!/bin/sh
test
"" != "$(grep -Ei '^#[0-9]+s?|' "$1")" || {
echo
>&2 Yo! Commit message needs to be in the form '#<issue number> | <text message>'.
exit 1
}