JakeCobley
1/21/2018 - 6:54 PM

Git Commit Template

Git commit template for writing better, more useful Git commit messages.





## REMEBER:
#
# - Use the imperative: "Fix bug" and not "Fixed bug" or "Fixes bug." This
#   convention matches up with commit messages generated by commands like git
#   merge and git revert.
# - Captialize the subject line.
# - Do not end the subject line with a period.
# - Limit the subject line to 50 characters or less.
# - Separate subject from body with a blank line.
# - Use the body to explain what and why not how.
# - Reference the issue, trello card, etc.
# - You can ise multiple lines in the body.
# - Use "-" for bullet points in the body.
# - Credit co-authors using commit trailer (share the credit, share the blame).
#
#
## EXAMPLE:
#
# Redirect user to the requested page after login
#
# Issue: #13
#
# Users were being redirected to the home page after login, which is
# less useful than redirecting to the page they had originally requested
# before being redirected to the login form.
#
# - Store requested path in a session variable.
# - Redirect to the stored location after successfully logging in the
#   user.
#
# Co-authored-by: name <name@example.com>
#
#
## INFO:
#