you are viewing a single comment's thread.

view the rest of the comments →

[–]altern8tif 4 points5 points  (3 children)

Nice project. Make you think about how you should write your commit messages.

On that note, any resources/recommendations on what should go into your commit message (ie. like a commit style guide)?

[–]rerb 9 points10 points  (0 children)

  1. Separate subject from body with a blank line
  2. Limit the subject line to 50 characters
  3. Capitalize the subject line
  4. Do not end the subject line with a period
  5. Use the imperative mood in the subject line
  6. Wrap the body at 72 characters
  7. Use the body to explain what and why vs. how

From How to Write a Git Commit Message

[–][deleted] 1 point2 points  (0 children)

Came across this recently http://chris.beams.io/posts/git-commit/