[ Git ]
[Git] .gitignore 설정하기
https://gmlwjd9405.github.io/2017/10/06/make-gitignore-file.html 너무 용량이 큰 파일이거나, 프로젝트 생성 시 1회만 필요한 설정 파일 등 remote repository에 올릴 필요 없는, 즉 Git 버전 관리에서 제외할 파일 목록을 .gitignore이라는 txt 파일에 추가해 commit, push하면 된다. local에서는 삭제되지 않지만, remote (github)에서는 나타나지 않는다! cf. 특정 확장자의 파일 말고, 특정 폴더 전체를 제외하고 싶을 때? 단, 이 때 이미 tracked 되고 있는 파일들을 gitignore에 추가하기만 한다고 untracked 되는 게 아니기 때문에, git rm -r --cached *.bmp (기존에 ..
[Git] 100MB 이상의 파일 github에 업로드하기
대용량 파일 push할 때, https://medium.com/@stargt/github%EC%97%90-100mb-%EC%9D%B4%EC%83%81%EC%9D%98-%ED%8C%8C%EC%9D%BC%EC%9D%84-%EC%98%AC%EB%A6%AC%EB%8A%94-%EB%B0%A9%EB%B2%95-9d9e6e3b94ef BFG Repo-Cleaner로 대용량 파일들 commit log들 삭제했음에도 불구하고 똑같은 exceed error 난다면? => *.exe가 아니라, track 할 대용량 파일들의 확장자들을 모두 track해줘야 함!