:::: MENU ::::
Posts tagged with: git-lfs

Github에 100MB 이상 파일 올리는 법

Github은 100MB이상의 파일을 올리지 못하게 되어 있는데, 해결 방법은 git-lfs를 설치해서 올리면 된다.

git-lfs를 설치
https://git-lfs.github.com/ 에서 파일을 다운로드하고 install.sh 를 실행한다.
git lfs install을 실행해서 설치가 제대로 됐는지 확인한다.

git lfs install

github에 올릴 파일을 등록한다.

git lfs track “*.xxx”

그 다음은 똑같다.

git add *.xxx
git commit -m “Add design file”
git push origin master