Create Empty Commit

By default, Git doesn't alow creating empty commits. There might be situations when an empty commit might be required (such as triggering a new CI build).

To create an empty git commit:

git commit --allow-empty -m "This is an empty commit"