.gitignore

notepad·2024년 1월 22일
0

git

목록 보기
12/14

remote에 이미 올라간 pycache 처리.

혹은 기타 .gitignore 에 추가 하고 싶은데
이미 remote 에 올라간 파일들에 대한 처리

pycahche

.gitignore 에 __pycache__/ 작성
shell 실행 find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf

그외

git rm -r --cached .  #그 전에 커밋된 지우고 싶은 파일들도 삭제
git add .
git commit -m "fixed untracked files"
git push

0개의 댓글