Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Git Commit Message Template to the Repository #94

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Include this file in your workflow with `git config --local include.path ./.gitconfig`
[commit]
gpgsign = true
template = ./.gitmessage
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
24 changes: 24 additions & 0 deletions .gitmessage
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Title of the commit message

##################################
Why:
## Why is the change necessary?
## What does the reviewer of my put request expect in the commit, help them to easily identify and point out unrelated changes!

* ...

##################################
This change addresses the need by:
## How does it address the issue? Like performance improvements, or bugs, or ... <if change is obvious omit this part>

* ...

##################################
What side effects does this change have?
## To many points here means a to large commit! (1 or 2 is fine)

* ...

# 50-character subject line
#
# 72-character wrapped longer description.
Loading