If you don’t want to remember this each tiem you could also integrate a change for hooks/prepare-commit-msg in a manner like
https://gist.github.com/bartoszmajsak/1396344#file-prepare-commit-msg-sh or https://bitbucket.org/tpettersen/prepare-commit-msg-jira
This could then be used in conjunction with a hook/commit-msg that enforces standard behavior on commit messages:
#!/bin/sh
grep -q 'BOOS-' $1 || {
echo "Add BOOS ticket"
echo "Commit aborted"
false
}
mkdir -p ~/.git_template/hooks
git config --global init.templatedir '~/.git_template'
cp commit-msg validate_commit.rb ~/.git_template/hooks
git init
echo "git commit -m 'No ticket in first line should fail'"