본문 바로가기

Tool/Git

[Git] this exceeds GitHub's file size limit of 100.00 MB : git lfs large file 추가 방법

728x90
반응형
SMALL

 

  • error
this exceeds GitHub's file size limit of 100.00 MB

 

 

  • git lfs 설치
Linux(Debian): apt-get install git-lfs
Linux(Red Hat): yum install git-lfs
macOS(brew): brew install git-lfs
Windows: 사이트에서 다운로드

설치후, 폴더 에서

git lfs install

 

  • lfs 등록 (.gitattributes 파일에 등록됨)
git lfs track <file path>

100MB 넘었다고 에러난 파일을 모두 track 해제하고 lfs track 등록하자

이전 commit 삭제하고

  • 이전 커밋을 삭제하고 변경 사항을 유지
git log
git reset HEAD^ --soft

그 후 add commit하면

Large 파일이 올라간다..

하지만 난 다음과 같은 에러가 또 생겨서 Git LFS Data 결제했다..

This repository is over its data quota. Account responsible for LFS bandwidth should purchase more data packs to restore access.
Uploading LFS objects:   0% (0/3), 0 B | 0 B/s, done.

 

 

728x90
반응형
LIST

'Tool > Git' 카테고리의 다른 글

[Git] .DS_Store 삭제후 다시 commit  (0) 2024.08.12
[Git] non-fast-forward 오류  (0) 2024.07.23
[Git] fatal: the remote end hung up unexpectedly 에러  (0) 2024.07.23