에러 해결

[Git] E325: ATTENTIONFound a swap file by the name ~ 에러 해결 방법

눙엉 2022. 1. 12. 15:51

터미널에서 git commit을 하다가 강제로 종료 후에 다시 커밋하려니 아래와 같은 에러가 발생하였다.

E325: ATTENTION Found a swap file by the name "~/.git/.COMMIT_EDITMSG.swp"

 

해결 방법

// 해당 폴더 터미널에서 .git 폴더 접근
cd .git

// 모든 폴더 검색
ls -a 

// .COMMIT_EDITMSG.swp 파일 삭제
rm .COMMIT_EDITMSG.swp

 

참고 https://stackoverflow.com/questions/14513349/e325-attention-found-a-swap-file-by-the-name-git-commit-editmsg-swp/14529150