aboutsummaryrefslogtreecommitdiffstats
path: root/.config/git
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2019-04-08 23:14:41 +0200
committerDavid Runge <dave@sleepmap.de>2019-04-08 23:14:41 +0200
commit063d5265e415d227146d881a3bde097175d4f97e (patch)
treefc91b468e32772074e844e91bb6524a2052e5b9d /.config/git
parent269254a80d21f0e9076767c378111b9bdd9396dd (diff)
downloaddotfiles-063d5265e415d227146d881a3bde097175d4f97e.tar.gz
dotfiles-063d5265e415d227146d881a3bde097175d4f97e.tar.bz2
dotfiles-063d5265e415d227146d881a3bde097175d4f97e.tar.xz
dotfiles-063d5265e415d227146d881a3bde097175d4f97e.zip
.config/git/config: Automatically signing commit, when writing with message (git c).
Diffstat (limited to '.config/git')
-rw-r--r--.config/git/config4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/git/config b/.config/git/config
index 5aae96f..06c6e88 100644
--- a/.config/git/config
+++ b/.config/git/config
@@ -27,7 +27,7 @@
b = branch -v # branch (verbose)
# commit
- c = commit -m # commit with message
+ c = commit -S -m # commit with message
ca = commit -am # commit all with message
ci = commit # commit
amend = commit --amend # ammend your last commit
@@ -116,7 +116,7 @@
# Git diff will use (i)ndex, (w)ork tree, (c)ommit and (o)bject
# instead of a/b/c/d as prefixes for patches
mnemonicprefix = true
- algorithm = patience
+ algorithm = patience
[rerere]
# Remember my merges
# http://gitfu.wordpress.com/2008/04/20/git-rerere-rereremember-what-you-did-last-time/