やったこと
バージョン管理していないファイルを消します。
確認環境
$ git --version
git version 2.17.2 (Apple Git-113)
調査
ファイル準備
$ touch a
$ touch b
削除のドライラン
$ git clean -n
Would remove a
Would remove b
削除実行
$ git clean -f
Removing a
Removing b
バージョン管理していないファイルを消します。
$ git --version
git version 2.17.2 (Apple Git-113)
$ touch a
$ touch b
$ git clean -n
Would remove a
Would remove b
$ git clean -f
Removing a
Removing b