[New] Clean up git reflog history before git gc

Peter Dave Hello 2017-07-14 00:37:58 +08:00 committed by Jordan Harband
parent ab591b07ef
commit 248706d5f8
No known key found for this signature in database
GPG Key ID: 64A196AEE0916D55
1 changed files with 3 additions and 0 deletions

View File

@ -125,6 +125,9 @@ install_nvm_from_git() {
fi fi
echo "=> Compressing and cleaning up git repository" echo "=> Compressing and cleaning up git repository"
if ! command git --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" reflog expire --expire=now --all; then
echo >&2 "Your version of git is out of date. Please update it!"
fi
if ! command git --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" gc --auto --aggressive --prune=now ; then if ! command git --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" gc --auto --aggressive --prune=now ; then
echo >&2 "Your version of git is out of date. Please update it!" echo >&2 "Your version of git is out of date. Please update it!"
fi fi