This commit is contained in:
Marc Beninca 2023-05-14 17:08:10 +02:00
parent 7557c5b2cc
commit 9bd2c799a0

View file

@ -90,9 +90,16 @@ alias gfp='git fetch --prune --tags --verbose'
# garbage collect all orphan commits # garbage collect all orphan commits
alias ggc="\ alias ggc="\
git reflog expire --expire=now --all \ git \
reflog \
expire \
--all \
--expire \"all\" \
; \ ; \
git gc --prune=now \ git \
gc \
--aggressive \
--prune \"now\" \
" "
# initialize a new repository # initialize a new repository