Skip to content

Instantly share code, notes, and snippets.

@tamunoibi
Created May 24, 2019 11:29
Show Gist options
  • Select an option

  • Save tamunoibi/2ca0e9891908a028ed92a165322a102c to your computer and use it in GitHub Desktop.

Select an option

Save tamunoibi/2ca0e9891908a028ed92a165322a102c to your computer and use it in GitHub Desktop.
Snippet for creating feature pull requests
# Hey there o/!
#
# We just wanted to let you know that we care a great deal about
# making our git history clean, maintainable and easy to access for
# all our contributors. Commit messages are very important to us,
# which is why we have a strict commit message policy in place.
# Please use the following guidelines to format all your commit
# messages:
#
# <type>(<scope>): <subject>
# <BLANK LINE>
# <body>
# <BLANK LINE>
# <footer>
#
# Please note that:
# - The HEADER is a single line of max. 50 characters that
# contains a succinct description of the change. It contains a
# type, an optional scope, and a subject
# + <type> describes the kind of change that this commit is
# providing. Allowed types are:
# * feat (feature)
# * fix (bug fix)
# * docs (documentation)
# * style (formatting, missing semicolons, …)
# * refactor
# * test (when adding missing tests)
# * chore (maintain)
# + <scope> can be anything specifying the place of the commit
# change
# + <subject> is a very short description of the change, in
# the following format:
# * imperative, present tense: “change” not
# “changed”/“changes”
# * no capitalised first letter
# * no dot (.) at the end
# - The BODY should include the motivation for the change and
# contrast this with previous behavior and must be phrased in
# imperative present tense
# - The FOOTER should contain any information about Breaking
# Changes and is also the place to reference GitHub issues that
# this commit closes
#
# Thank you <3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment