我的.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。知道我哪里出错了?
答案 0 :(得分:3)
将temp
替换为:
temp/*
这会忽略目录中的所有文件。在大多数情况下,temp
,temp/
和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
中进行版本控制使用
的.gitignoretemp/*
!temp/script.txt
请注意,订单非常重要(我先错了,这就是为什么我差点断定它无法完成)