Skip to content

Commit

Permalink
Add repository git config that includes the git commit message template
Browse files Browse the repository at this point in the history
What:
* This file needs to be included by each developer using the local command to have it repository dependent

Use:
* git config --local include.path ./.gitconfig

Changes to be committed:
	new file:   .gitconfig
  • Loading branch information
franziska-wegner committed Jan 5, 2024
1 parent 6848319 commit 851a3ca
Showing 1 changed file with 9 additions and 0 deletions.
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

0 comments on commit 851a3ca

Please sign in to comment.