This commit is contained in:
Marc Beninca 2023-05-14 16:58:37 +02:00
parent 2c8add321a
commit 7557c5b2cc

View file

@ -89,7 +89,11 @@ alias gf='git fetch --tags --verbose'
alias gfp='git fetch --prune --tags --verbose' alias gfp='git fetch --prune --tags --verbose'
# garbage collect all orphan commits # garbage collect all orphan commits
alias ggc='git reflog expire --expire=now --all;git gc --prune=now' alias ggc="\
git reflog expire --expire=now --all \
; \
git gc --prune=now \
"
# initialize a new repository # initialize a new repository
alias gi='git init' alias gi='git init'