git commit without 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: change git commit message
git commit --amend -m "New commit message"
Example 3: git commit expanded message
git commit -m "Title" -m "Description ..........";