当我输入“git status”时,输出是
# 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.
那么我怎样才能检查缓存文件夹和锁定文件夹的状态
感谢您的任何建议。
元