「gitstatus」と入力すると、出力は次のようになります。
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# var/cache/
# var/locks/
# var/session/
nothing added to commit but untracked files present (use "git add" to track)
それから私は使用しようとします
git status var/cache/
そしてそれは戻ります
error: pathspec 'var/cache/' did not match any file(s) known to git.
では、キャッシュフォルダとロックフォルダのステータスを確認するにはどうすればよいですか?
アドバイスありがとうございます。
元