Git avancé
Amanda Crawford-Adamo
Software and Data Engineer
Commande Git LFS :
git lfs
Avantages :
Initialiser Git LFS
git lfs install
Configurer les fichiers à suivre et générer le fichier .gitattributes
git lfs track "*.csv"
Ajouter .gitattributes à l'index avec la configuration de suivi
git add .gitattributes
git commit -m "Track CSV files"

git addgit add large_file.csv
git commit -m "Update large CSV file"
git push origin main
git pull
git lfs pull # Au besoin, pour télécharger explicitement le contenu LFS
Quand l'utiliser :
Quand ne pas l'utiliser :
Conseils :
Git avancé