advimage リポジトリのクローンを作成すると、img/
ディレクトリが追跡されていないように見えます。
gokmen@rodosto advimage % git st
?? img/
gokmen@rodosto advimage % git status
# On branch develop
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# img/
nothing added to commit but untracked files present (use "git add" to track)
このディレクトリは空ではありません。にsample.gifという名前の追跡ファイルがありますimg/
。空のファイルを追加しようとしています:
gokmen@rodosto advimage % touch img/hede
gokmen@rodosto advimage % git add img/hede
gokmen@rodosto advimage % git st
A img/hede
?? img/
gokmen@rodosto advimage % rm -rf img
gokmen@rodosto advimage % git st
AD img/hede
D img/sample.gif
gokmen@rodosto advimage % git reset
Unstaged changes after reset:
M img/sample.gif
gokmen@rodosto advimage % git st
D img/sample.gif
gokmen@rodosto advimage %
git fsck --full
出力は空です。リストimg/
から削除できないのはなぜですか?git status