'!'不排除.gitignore中的文件

时间:2013-09-13 08:33:29

标签: git gitignore

我的.gitignore文件:

.DS_Store
temp
!temp/script.txt

然而,当我执行git status时,它不显示temp/目录以指示script.txt未处于暂存状态。它只显示.gitignore文件:

# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#   modified:   .gitignore

我只是在学习git。知道我哪里出错了?

2 个答案:

答案 0 :(得分:3)

temp替换为:

temp/*

这会忽略目录中的所有文件。在大多数情况下,temptemp/temp/*都是相同的,因为在前两种情况下,目录是忽略的,而在第三种情况下,Git不跟踪空目录。因此,目录本身将被忽略。

为了说明这一点,这基本上是temp/ temp1.txt temp2.txt temp3.txt时发生的事情:

temp # anything with the name of "temp"; a directory, a symlink, a file.
temp/ # whole of temp dir
temp/* # temp/temp1.txt temp/temp2.txt temp/temp3.txt

因此,第三种情况适用于您的情况。

否定模式必须放在覆盖它的模式之后。在这种情况下,!temp/script.txt必须在temp/*之后。否则,它将不会被应用。

因此,您的最终.gitignore文件应如下所示:

.DS_Store
temp/*
!temp/script.txt

答案 1 :(得分:0)

注意目录未在git

中进行版本控制

使用

的.gitignore
temp/*
!temp/script.txt

请注意,订单非常重要(我先错了,这就是为什么我差点断定它无法完成)