This commit is contained in:
Marc Beninca 2024-11-16 19:02:56 +01:00
parent 5539baa340
commit 7f814102e0
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -209,21 +209,20 @@ gdw() {
} }
# fetch from the remote repository # fetch from the remote repository
alias gf="\ gf() {
git \ git \
fetch \ fetch \
--verbose \
--tags \ --tags \
" --verbose \
"${@}"
}
# fetch from remote repository and prune local orphan branches # fetch from remote repository and prune local orphan branches
alias gfp="\ gfp() {
git \ gf \
fetch \
--verbose \
--tags \
--prune \ --prune \
" "${@}"
}
# garbage collect all orphan commits # garbage collect all orphan commits
alias ggc="\ alias ggc="\