`git clean` remove os arquivos ignorados por padrão?

De acordo com a ajuda, sem-x opçãogit clean deve deixar os arquivos ignorados, mas isso não acontece.

[il@reallin test]$ cat .gitignore
*.sar
[il@reallin test]$ mkdir -p conf/sar && touch conf/sar/aaa.sar
[il@reallin test]$ git status
# On branch master
nothing to commit, working directory clean
[il@reallin test]$ git clean -df
Removing conf/

conf/sar/aaa.sar é removido. Isso é um bug?

questionAnswers(4)

yourAnswerToTheQuestion