当.gitignore有子目录条目时,git clean -X行为

时间:2010-09-23 14:26:36

标签: git gitignore

在.gitignore中使用子目录条目时,“git clean -X”不会清除被忽略的子目录。

$ git init test
Initialized empty Git repository in /home/jpgariep/git/test/.git/
$ cd test/
$ mkdir -p a/b/c
$ touch a/b/c/test
$ echo '/a/b/' > .gitignore
$ git add .gitignore
$ git commit -m "Added .gitignore."
[master (root-commit) 94e2825] Added .gitignore.
 1 files changed, 1 insertions(+), 0 deletions(-)
 create mode 100644 .gitignore
$ git status
# On branch master
nothing to commit (working directory clean)
$ git clean -X -d -f
$ ls a
b

为什么b还在那里?

Git版本:1.7.2.3

注意:2个月前也发布在git邮件列表上,没有回复。

1 个答案:

答案 0 :(得分:1)

显然,这是一个错误。

http://marc.info/?l=git&m=128561999924671&w=2