高度な Git
Amanda Crawford-Adamo
Software and Data Engineer
Git LFS コマンド:
git lfs
利点:
Git LFS を初期化
git lfs install
追跡対象を設定し .gitattributes を生成
git lfs track "*.csv"
追跡設定の .gitattributes をインデックスに追加
git add .gitattributes
git commit -m "Track CSV files"

git add で新規ファイルを追加git add large_file.csv
git commit -m "Update large CSV file"
git push origin main
git pull
git lfs pull # 必要なら LFS 内容を明示的に取得
利用する場面:
利用しない場面:
ヒント:
高度な Git