728x90

100mb가 넘는 파일을 push 할 때 remote: GitLab: You are attempting to check in one or more blobs which exceed the 100.0MiB limit: 오류가 뜨는 경우가 있습니다. 이럴 경우에는 git lfs를 설정해주어야 합니다.

 

먼저 https://git-lfs.com/에서 Download 해줍니다.

 

Git Large File Storage

Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.

git-lfs.com

다 설치가 되었으면 해당 파일 경로로 이동해 아래 명령어를 입력합니다.

git lfs track "file.txt"

그러면 .gitatrribute라는 파일이 생기고 이제 push하면 제대로 업로드가 됩니다.

728x90

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

git revert  (0) 2020.06.04
git reset  (0) 2020.06.04
git checkout  (0) 2020.05.24
git diff  (0) 2020.05.24
git add, git commit, git status, git log  (0) 2020.05.24

+ Recent posts