Advanced Git
Amanda Crawford-Adamo
Software and Data Engineer
Příkaz Git LFS:
git lfs
Výhody:
Inicializace Git LFS
git lfs install
Nastavení sledovaných souborů a vytvoření souboru .gitattributes
git lfs track "*.csv"
Přidání .gitattributes s konfigurací sledování do indexu
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 # If needed to explicitly download LFS content
Kdy používat:
Kdy nepoužívat:
Tipy:
Advanced Git