danger_module을 완전히 정리하는 것이 목표이므로 ➊ 변경된 파일은 git restore 명령으로 복원하고 ➋ 커밋 이후에 생성했던 항목은 rm 명령으로 삭제합니다. ➌ 작업 디렉터리가 깨끗하게 빈 상태입니다. 사실 이 결과가 --hard 옵션을 붙여 git reset 명령을 실행한 결과와 같습니다.
administrator@vmgate:~/code/environments/production$ git restore manifests/site.pp ➊ administrator@vmgate:~/code/environments/production$ rm -rf modules/danger_module ➋ administrator@vmgate:~/code/environments/production$ git status ➌ On branch master nothing to commit, working tree clean