git 대용량 업로드

hyejun sang·2022년 6월 27일
0

대용량 파일을 깃에 업로드할때(100MB 이상), 업로드가 되지 않는 문제가 생깁니다.
문제를 차례대로 해결합시다.

git lfs 이용

1. https://git-lfs.github.com/ 사이트에 들어가서 download 먼저 해줍니다.

2. 해당 Repository에 아래 명령 적용

git lfs install

3. 이전 git add 기록이 있다면 지워줌

git rm -r --cached "*"

4. git add .gitattributes

lfs는 .gitattributes를 통해 관리되기 때문에 꼭!

git add .gitattributes

5. git에 원하는 파일 add

git add (파일명)
git commit -m "Add design file"
git push origin (브런치명)

0개의 댓글