From d13665888829101a1c85e2557f935358e16b6173 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Sat, 21 May 2022 13:15:33 +0200 Subject: [PATCH] git: Update alias section Move `signoff` out of the 'external' subsection as the script [got replaced by the native way][1]. Update 'external' subsection's comment as it does not contain only zsh functions. [1]: bb21c4df7844 ("git: Replace git-signoff with `rebase --signoff`") --- .config/git/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/git/config b/.config/git/config index 429957b..a56d198 100644 --- a/.config/git/config +++ b/.config/git/config @@ -11,12 +11,12 @@ changes = flog HEAD...FETCH_HEAD fixes = log -1 --pretty=fixes root = rev-parse --show-toplevel + signoff = rebase --signoff - # Implemented as zsh functions + # Implemented as zsh functions or external programs checkout-worktree = "!\"${XDG_CONFIG_HOME:-$HOME/.config}/zsh/autoload/git/git-checkout-worktree\"" filter-repo = !git-filter-repo flog = "!\"${XDG_CONFIG_HOME:-$HOME/.config}/zsh/autoload/git/glog\"" - signoff = rebase --signoff ssync = "!\"${XDG_CONFIG_HOME:-$HOME/.config}/zsh/autoload/git/git-ssync\"" track = "!\"${XDG_CONFIG_HOME:-$HOME/.config}/zsh/autoload/git/git-track\"" [blame]