Skip to content

Instantly share code, notes, and snippets.

@parkjoohwan
Created February 3, 2020 08:01
Show Gist options
  • Select an option

  • Save parkjoohwan/ea3ed20e8fc9c1a8b9893721554fddd0 to your computer and use it in GitHub Desktop.

Select an option

Save parkjoohwan/ea3ed20e8fc9c1a8b9893721554fddd0 to your computer and use it in GitHub Desktop.
100MB 이상의 파일을 포함한 프로젝트를 git에 올리는 방법

git lfs를 이용해서 올려야합니다.

해당 프로젝트가 있는 폴더에서

git init
git lfs install
git lfs track "*.[용량이 큰 파일 확장자]" or "[지정할 파일]"
git remote [레포지토리 url]
git add .
git commit -m "[메세지]"
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment