고급 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