「ステージングされていない」かつ「.gitignoreに指定されていない」 Untracked filesを一括して削除する方法
削除対象となるファイルを確認
1 2 3 |
$ git clean -n Would remove hello/world.h Would remove hello/world.c |
対話形式でファイルを削除
1 |
$ git clean -i |
強制的にファイルを削除
1 2 3 |
$ git clean -f Removing hello/world.h Removing hello/world.c |