From 2a9b9530e91985d7007e0ea39ca67ac9c158f6a2 Mon Sep 17 00:00:00 2001 From: druckdev Date: Thu, 11 Mar 2021 01:37:32 +0100 Subject: [PATCH] git:alias: Fix `spull` to actually execute --- .config/git/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/git/config b/.config/git/config index 1eec762..a0e009a 100644 --- a/.config/git/config +++ b/.config/git/config @@ -15,7 +15,7 @@ excludesfile = ~/.config/git/ignore [alias] root = rev-parse --show-toplevel - spull = "__git_spull() { git pull \"$@\" && git submodule sync --recursive && git submodule update --init --recursive; }; __git_spull" + spull = "!__git_spull() { git pull \"$@\" && git submodule sync --recursive && git submodule update --init --recursive; }; __git_spull" [status] submodulesummary = true [diff]