我无法让.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
。