Quando ci sono presenti i file (grandi o inutili) nel tuo repository git che si desidera rimuovere dalla storia è possibile utilizzare i metodi seguenti.
Repository tipici diminuiscono da circa 20 MB
a meno di 1 MB
. 1
Utilizzare git-filter-branch
o installare BFG.
brew install bfg
# Show sizes of files and folders
du -sh {.*,*}
# Find 10 biggest Files in Repo
# https://stackoverflow.com/questions/10622179/how-to-find-identify-large-files-commits-in-git-history#20609719
git gc
git rev-list --objects --all | grep "$(git verify-pack -v .git/objects/pack/*.idx | sort -k 3 -n | tail -10 | awk '{print$1}')"
# Delete folders
bfg --delete-folders <path> # --no-blob-protection
# Delete Files
bfg --delete-files <path> # --no-blob-protection
# Remove reflog
git reflog expire --expire=now --all && git gc --prune=now --aggressive
# If there are unstaged changes
git rm <path> --cached
git rm -r <path> --cached
Non dimenticate di aggiungere le cartelle rimosse al .gitignore
se sono ancora presenti.
Note a piè pagina
L'ha tirata fuori dall'aria. ↩