git commit no message code example
Example 1: how to git commit without message
#newer versions of git allow for this
git commit -a --allow-empty-message -m ''
Example 2: git commit
git commit -a -m "The Commit message"
Example 3: git commit with message
git commit -m <msg>
git commit -message=<msg>