우노
[GitHub] .ipynb_checkpoints 삭제 방법 본문
.ipynb_checkpoints 란?
- 주피터 노트북에서 자동저장을 위해 사용되는 폴더입니다.
.ipynb_checkpoints 삭제 방법
저장소 상위 디렉토리에서 현재 디렉토리 아래의 모든 .ipynb_checkpoints 파일을 제거
find . -name .ipynb_checkpoints -print0 | xargs -0 git rm -rf --ignore-unmatch
만약, 앞으로도 .ipynb_checkpoints 파일을 업로드하지 않을거라면,
저장소 상위 디렉토리에 .gitignore 파일 생성 및 .ipynb_checkpoints 추가
echo .ipynb_checkpoints >> .gitignore
변경 사항을 원격 저장소에 push
git add --all git commit -m '.ipynb_checkpoints removed' git push origin main
'DevOps > GitHub' 카테고리의 다른 글
[GitHub] License 란? (0) | 2021.11.12 |
---|---|
[GitHub] GitHub Workflow 및 Git Status 이해하기 (0) | 2021.06.21 |
[GitHub] Git LFS를 사용한 100MB 이상의 파일 업로드 (0) | 2021.05.20 |
[GitHub] MacOS 업데이트 후, 개발 도구 에러 해결 방법 (0) | 2021.03.09 |
[GitHub] .DS_Store 파일 개념 및 삭제 방법 (6) | 2021.03.03 |
Comments