This commit is contained in:
Marc Beninca 2023-05-14 18:55:39 +02:00
parent 8a99b9e1b7
commit 81616ae770

View file

@ -121,10 +121,21 @@ alias gdt='git difftool --dir-diff'
alias gdw='git diff --word-diff-regex=.' alias gdw='git diff --word-diff-regex=.'
# fetch from the remote repository # 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 # 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 # garbage collect all orphan commits
alias ggc="\ alias ggc="\