我正在使用 git 存储库跟踪我的主文件夹。做完之后git status
,我得到了这个:
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# workspace/
no changes added to commit (use "git add" and/or "git commit -a")
为什么显示那条线?这是我的.gitignore
文件:
*
!*/
!.vim/plugin/*
!.vim/doc/*
例如,我必须添加!*/
以跟踪内部的变化.vim/plugin
,正如我在这里看到的那样。