Git tips and tricks

Tips and Tricks for Using Git

Improve your git proficiency and productivity by reading the tips and tricks in this topic.

Reply with your tips and tricks to show how smart you are, and help your fellow community members!

Force a commit even if there are no changes

git commit --allow-empty -m "Test with no change"

This is useful if you wish to trigger a continuous integration test on GitHub but there is no change in your code.