我有一些文件/文件夹不会离开 Git 暂存区?
# On branch master
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
# (commit or discard the untracked or modified content in submodules)
#
# modified: JavaScript/Stand.ard.iz.er (modified content, untracked content)
# modified: Site (untracked content)
# modified: Template Archives/Template (modified content, untracked content)
# modified: Template Archives/Template_Git (modified content, untracked content)
#
我已经尝试了一切来提交这些“修改过的”文件,但没有运气?
我试过了...
git add .
git add *
git add -u
git add {actual full directory path}
......但它都不起作用。
有任何想法吗?
谢谢。