0

我正在使用 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,正如我在这里看到的那样。

4

1 回答 1

2

您忽略了第一行的所有内容:'*'。

然后你用第二行忽略目录:'!* /'。

瞧,你没有忽略目录!

于 2012-11-16T17:43:31.063 回答