git commit & branch/merge Current: 이미 커밋된 파일을 ignore 하기 이미 커밋된 파일을 ignore 하기 i.e., stop tracking the file but not delete it from your system use: git rm --cached filename CODE First commit any outstanding code changes, and then, run this command: git rm -r --cached . CODE To untrack every file that is now in your .gitignore RefIgnore files that have already been committed to a Git repository ×