From 81616ae7707ef2d4b279ba2b5e4d76640eb16798 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 14 May 2023 18:55:39 +0200 Subject: [PATCH] gf --- bash/alias/git.sh | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/bash/alias/git.sh b/bash/alias/git.sh index 9065dcd..be3ed61 100644 --- a/bash/alias/git.sh +++ b/bash/alias/git.sh @@ -121,10 +121,21 @@ alias gdt='git difftool --dir-diff' alias gdw='git diff --word-diff-regex=.' # fetch from the remote repository -alias gf='git fetch --tags --verbose' +alias gf="\ +git \ +fetch \ +--verbose \ +--tags \ +" # fetch from remote repository and prune local orphan branches -alias gfp='git fetch --prune --tags --verbose' +alias gfp="\ +git \ +fetch \ +--verbose \ +--tags \ +--prune \ +" # garbage collect all orphan commits alias ggc="\