在阅读了几个关于.gitignore
的问题之后,我发现没有人可以回答我的问题:
我必须添加到.gitignore中以忽略具有某个结尾的所有文件,比如说
所有文件夹中都有*.txt
。
我希望在顶层只有一个.gitignore
文件。
我尝试了几件事,但都没有效果。
这是我测试过的(.gitignore
之前已添加到存储库,没有添加其他文件):
$ ls
abc.txt content
$ ls content/
abc.txt def.other def.txt
$ echo "" > .gitignore
$ git status --ignored --untracked-files=all
# On branch master
# 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
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# abc.txt
# content/abc.txt
# content/def.other
# content/def.txt
no changes added to commit (use "git add" and/or "git commit -a")
这是预期的:所有文件都显示出来.gitignore为空。
$ echo "*.txt" > .gitignore
$ git status --ignored --untracked-files=all
# On branch master
# 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
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# content/def.other
# Ignored files:
# (use "git add -f <file>..." to include in what will be committed)
#
# abc.txt
no changes added to commit (use "git add" and/or "git commit -a")
为什么文件内容/ abc.txt和content / def.txt不显示在列表中?
$ git clean -n
Would not remove content/
我以为他们也会出现在这里。
$ echo "" > .gitignore
$ git clean -n
Would remove abc.txt
Would not remove content/
$ cd content
$ git clean -n -x
Would remove def.other
$ git clean -n -x
Would remove abc.txt
Would remove def.other
Would remove def.txt
如果文件content / abc.txt和content / def.txt由clean -n -x
显示,而不是由clean -n
显示,我认为它们会被忽略。但是为什么他们不出现在git status --ignored --untracked-files=all
?
答案 0 :(得分:3)
只需添加*.txt
即可。检查gitignore(5) man page以获取gitignore格式说明
如果您尝试添加content
目录,则将忽略所有*.txt
文件。
$ echo "*.txt" > .gitignore
$ git add content
$ git status --ignored --untracked-files=all
# On branch master
#
# Initial commit
#
# Changes to be committed:
# (use "git rm --cached <file>..." to unstage)
#
# new file: content/def.other
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# .gitignore
# Ignored files:
# (use "git add -f <file>..." to include in what will be committed)
#
# abc.txt
# content/abc.txt
# content/def.txt