git add 시도 중 에러가 떴다.
vscode를 끄고 관리자 권한으로 실행해도 여전히 에러가 떴다.
<에러 메시지>
fatal: Unable to create '.../.git/index.lock' : File exists.
Another git process seems to be running in this repository, e.g. an editor opened by 'git commit'. Please make sure all processes are terminated then try again. If it still fails, a git process may have crashed in this repository earlier:
remove the file manually to continue
<해결 방법>
$ rm -f ./.git/index.lock
관리자권한으로 git bash 를 실행 후 위의 명령어를 입력하여 파일을 삭제했다.
git 명령어가 다시 잘 실행된다.