From 7abac0e4e911d062939cbdc62f91429bdc21c58d Mon Sep 17 00:00:00 2001 From: Yax Date: Wed, 21 Jan 2026 09:11:32 +0100 Subject: [PATCH] Alias 'f' to git fetch --- dot_zshrc.tmpl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dot_zshrc.tmpl b/dot_zshrc.tmpl index 6521f5d..df2d389 100644 --- a/dot_zshrc.tmpl +++ b/dot_zshrc.tmpl @@ -73,12 +73,14 @@ chpwd() { if [ -z "$(git rev-parse --show-prefix)" ]; then echo "Fetching latest changes from remote..." - git fetch --quiet + git fetch fi fi } +alias f='git fetch' + # --------------------------------------------------------------------------- # Editor # ---------------------------------------------------------------------------