From 3512199fcefe760c8cf796110d717761776b46e9 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Sat, 14 May 2022 16:12:23 +0200 Subject: [PATCH] git:spull: Rename to ssync As I rarely use git-pull(1) and instead fetch and act manually, I'd rather have it to just sync the submodules. --- .config/git/config | 2 +- .config/zsh/autoload/git/{git-spull => git-ssync} | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) rename .config/zsh/autoload/git/{git-spull => git-ssync} (89%) diff --git a/.config/git/config b/.config/git/config index e893fef..6ab0475 100644 --- a/.config/git/config +++ b/.config/git/config @@ -17,7 +17,7 @@ filter-repo = "!\"${XDG_CONFIG_HOME:-$HOME/.config}/git/git-filter-repo/git-filter-repo\"" flog = "!\"${XDG_CONFIG_HOME:-$HOME/.config}/zsh/autoload/git/glog\"" signoff = "!\"${XDG_CONFIG_HOME:-$HOME/.config}/zsh/autoload/git/git-signoff\"" - spull = "!\"${XDG_CONFIG_HOME:-$HOME/.config}/zsh/autoload/git/git-spull\"" + ssync = "!\"${XDG_CONFIG_HOME:-$HOME/.config}/zsh/autoload/git/git-ssync\"" track = "!\"${XDG_CONFIG_HOME:-$HOME/.config}/zsh/autoload/git/git-track\"" [blame] date = short diff --git a/.config/zsh/autoload/git/git-spull b/.config/zsh/autoload/git/git-ssync similarity index 89% rename from .config/zsh/autoload/git/git-spull rename to .config/zsh/autoload/git/git-ssync index e26f38d..9d290c0 100755 --- a/.config/zsh/autoload/git/git-spull +++ b/.config/zsh/autoload/git/git-ssync @@ -2,6 +2,5 @@ emulate -L zsh -o err_return -git pull "$@" git submodule sync --recursive git submodule update --init --recursive