깃에 실수로 올려버린 파일은, 지우고 gitignore에 추가해도 사라지지 않음.
이럴 때 정리하기위해, 저장소에 저장된 파일을 지워주는 명령어
git rm <fileName> # 로컬, 저장소 모두 삭제
git rm --cached <fileName> # 저장소만 삭제(주로 사용)
참고:
About large files on GitHub - GitHub Docs
About size limits on GitHub GitHub tries to provide abundant storage for all Git repositories, although there are hard limits for file and repository sizes. To ensure performance and reliability for our users, we actively monitor signals of overall reposit
docs.github.com