2020-11-10 11:17:06 +00:00
|
|
|
|
# git gc
|
|
|
|
|
|
|
|
|
|
> Optimise le registre local en nettoyant les fichiers inutiles.
|
2021-01-30 17:03:18 +00:00
|
|
|
|
> Plus d'informations : <https://git-scm.com/docs/git-gc>.
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Optimise le registrey :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git gc`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Optimise le registre plus agressivement, plus long :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git gc --aggressive`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Afficher les objets a supprimer :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git gc --no-prune`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Supprime tout les objets trouvés sans l'afficher sur la sortie standart :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git gc --quiet`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Afficher le manuel :
|
2020-11-10 11:17:06 +00:00
|
|
|
|
|
|
|
|
|
`git gc --help`
|