오늘의 인기 글
최근 글
최근 댓글
Today
Total
04-29 01:41
관리 메뉴

우노

[GitHub] .ipynb_checkpoints 삭제 방법 본문

DevOps/GitHub

[GitHub] .ipynb_checkpoints 삭제 방법

운호(Noah) 2021. 3. 3. 15:36

.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
Comments