Git,  Programming

[Git] rm 명령어 옵션

Git을 사용하면서 특정 파일을 지우는데 사용되는 대표적인 명령어로 rm이 존재한다.

OptionDescription
–ignore-unmatchgit rm을 통해 파일을 지우는데, 만약 해당 파일이 git 상에 존재하지 않더라도 return status를 0으로 출력, 즉 fatal을 발생시키지 않음
–cachedHard copy는 날리지 않고 오직 index만 삭제
-r단일 파일이 아닌 디렉토리를 통채로 지울 때 recursive removal을 지원

Reference

  1. https://git-scm.com/docs/git-rm

Leave a Reply

Your email address will not be published. Required fields are marked *