diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-01-15 12:46:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 12:46:08 +0100 |
commit | 5e77533e277e3b49da101b4707f34f7079f0937d (patch) | |
tree | 4bc9ab3c7dbb3e26bff0ec0fbc4adc6b259b0c6c /git | |
parent | 11b1e71789c39384c5e7cf712320fd6507b41253 (diff) |
gitconfig: signkey and fix fd
Diffstat (limited to 'git')
-rw-r--r-- | git/.gitconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git/.gitconfig b/git/.gitconfig index 238947a..d0ae13e 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -1,12 +1,13 @@ [user] name = Santo Cariotti email = santo@dcariotti.me + signingkey = C9B7C8FD3701C2C6 [alias] ci = commit co = checkout logs = log --graph --branches --remotes --tags --pretty=format':%C(yellow)%h%C(green)%d%Creset %s %C(yellow)|%Creset %C(cyan)%an <%ae> %C(yellow)| %C(white)%aD %C(red)(%ar)%Creset' st = status - fd = "!f() { git l --grep=$1; }; f" + fd = "!f() { git log --grep=$1; }; f" amend = commit --amend [credential] helper = store |