diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2018-01-21 15:27:14 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2018-01-21 15:36:56 +0100 |
commit | 533f00d4350189deca00b4afd512733150eb23cc (patch) | |
tree | 7900bea9de965c7719fc6975139a2abaf58e70c9 /git/config | |
parent | f620b2a2f71cc3df7a714c0a829615df82b1a1cd (diff) | |
download | dotfiles-533f00d4350189deca00b4afd512733150eb23cc.tar.xz |
git: Drop --verbose from aliases since commit.verbose is set
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'git/config')
-rw-r--r-- | git/config | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -4,9 +4,9 @@ signingkey = 3A9D0BB5 [alias] - amend = commit --amend --verbose + amend = commit --amend br = branch - ci = commit --verbose --signoff + ci = commit --signoff co = checkout di = diff dc = diff --cached @@ -56,6 +56,9 @@ status = never tag = auto dense +[commit] + verbose = true + [core] # never use an askpass even if $SSH_ASKPASS is set askpass = @@ -134,8 +137,6 @@ [rerere] enabled = true -[commit] - verbose = true [filter "lfs"] clean = git-lfs clean -- %f smudge = git-lfs smudge -- %f |