リポジトリに単一の追跡されていないファイルを含むディレクトリ アプリがあり、実行すると、次のgit clean -f
メッセージが表示 されます。
しかし、同じディレクトリ内に追加の追跡ファイルがあり、まったく同じコマンドを実行すると、追跡されていないファイルが正常に削除されます。
私の質問は、追跡されていないファイルから削除した後にディレクトリが空になる場合、Git がディレクトリを削除しようとするのはなぜですか?
以下は、動作を再現するスクリプトです。前もって感謝します。
#!/bin/bash
# Create new empty repo
mkdir myrepo && cd myrepo
git init
# Create app directory with main.c
mkdir app
touch app/main.c
# Try to delete main.c with git clean -> Not working
git clean -f
# Add helper.c to app directory and add to index
touch app/helper.c
git add app/helper.c
# Try to delete main.c with git clean -> Now it's working
git clean -f