Error Logs
git rm -r --cached .
깃에 실수로 올려버린 파일은, 지우고 gitignore에 추가해도 사라지지 않음. 이럴 때 정리하기위해, 저장소에 저장된 파일을 지워주는 명령어 git rm # 로컬, 저장소 모두 삭제 git rm --cached # 저장소만 삭제(주로 사용) 참고: https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-large-files-on-github About large files on GitHub - GitHub Docs About size limits on GitHub GitHub tries to provide abundant storage for all Git repositories, although the..