From d02733bff16ff8e049ce5543ec5fd120cc3b0c4e Mon Sep 17 00:00:00 2001 From: Joe Fleming Date: Tue, 17 Nov 2020 11:07:09 -0700 Subject: [PATCH] feat: add git fixup alias and signature support --- git/gitconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/git/gitconfig b/git/gitconfig index 247fe63..6275642 100644 --- a/git/gitconfig +++ b/git/gitconfig @@ -6,6 +6,7 @@ bi = bisect ci = commit co = checkout + fu = commit --fixup cp = cherry-pick di = diff dc = diff --cached @@ -25,9 +26,10 @@ head = !git l -1 h = !git head - hp = "!source ~/.githelpers && show_git_head" + hs = !git head --show-signature r = !git l -30 ra = !git r --all + rs = !git log --oneline --show-signature l = "!source ~/.githelpers && pretty_git_log" la = !git l --all sync = "!source ~/.githelpers && sync_to_remote" @@ -35,6 +37,7 @@ bp = !git backport backport = "!source ~/.githelpers && backport_pr" track = "!source ~/.githelpers && track_remote" + sign = "!git commit -S --amend --no-edit" todo = grep --heading --break --ignore-case -e ' FIX: *' -e ' TODO: *' pr = "!source ~/.githelpers && get_pr"