git 삭제된 파일만 일괄 git add하는 방법

Posted by negabaro kim on Monday, March 22, 2021 Tags: git   1 minute read

삭제된 파일들만 git add하는 방법

git rm $(git ls-files --deleted)

정상동작시 대상파일(삭제된 파일)의 디렉토리가 출력된다.


fatal: pathspec ‘./xx’ did not match any files

위 커맨드 실행시 fatal: pathspec './xx' did not match any files같은 에러가 나와 실패할 때가 있다.

해당 파일이 Git에 등록이 안되어있을때 발생하는 에러이다.

이때는 -r --ignore-unmath옵션을 붙여서 강제 삭제해주는 방법을 쓰도록하자.

git rm -r --ignore-unmatch  ./xx

위 커맨드 실행후 다시 git rm $(git ls-files --deleted) 실행해주면 정상동작했다.