GIT 로컬 repo와 원격 repo간 차이로 인한 특정 파일(로그) 제외특정 파일 제외 : git filter-branch --force --index-filter "git rm --cached --ignore-unmatch '~~~~~.zip'" --prune-empty --tag-name-filter cat -- --all커밋 연결이 끊어진 로그 만료 시키기 : git reflog expire --expire=now --all가비지 컬렉션 실행 및 퍼지 : git gc --aggressive --prune=now다시 강제 푸시 : git push -f origin main