.gitignore不忽略指定的目录

时间:2015-04-03 02:19:57

标签: git

我无法让.gitignore忽略一个目录...我已经阅读了其他线程,他们都建议未提交的目录或​​文件已被提交,这就是为什么它不会被忽略。不是这种情况。你能不能看看我在下面做什么,让我知道我做错了什么?

如果我没有正确格式化,我很抱歉...我是stackoverflow的新手。

$ mkdir stackoverflow_example
$ cd stackoverflow_example
$ git init
$ mkdir ignoreThis
$ echo "/ignoreThis" > .gitIgnore
$ cd ignoreThis
$ echo "ignore this text file in the ignoreThis directory" > ignoreText.txt
$ cd ..
$ type .gitignore /ignoreThis
$ git status 

On branch master

Initial commit

Untracked files: (use "git add ..." to include in what will be committed)

    .gitIgnore
    ignoreThis/

nothing added to commit but untracked files present (use "git add" to track)

此时不应该在我的临时区域中列出ignoreThis

1 个答案:

答案 0 :(得分:0)

您的文件名为gitIgnore,请将其命名为gitignore

here

中的更多信息