我对Git感到厌烦,并遇到以下问题:

我的项目源树:

/
|
+--src/
+----refs/
+----...
|
+--vendor/
+----...

我在我的供应商分支中有代码(目前是MEF),我将在那里编译这些代码,然后将这些引用移到/src/refs中,这是项目获取它们的地方。

我的问题是,我的.gitignore设置为忽略*.dll和*.pdb。我可以执行gitadd-f bar.dll来强制添加被忽略的文件,这是正常的,问题是我无法找出存在哪些文件被忽略。

我想列出被忽略的文件,以确保我不会忘记添加它们。

我已经阅读了gitls文件的手册页,无法使其正常工作。在我看来,gitls文件——排除标准——我应该做我想做的事情。我错过了什么?


当前回答

(扩展其他答案)

注意,git-check-ignore使用committed.gitignore,而不是工作树中的那个!为了在不影响git历史记录的情况下使用它,您可以自由地尝试编辑它,然后使用gitcommit提交--修改。

这个问题主要发生在您需要解决这个问题的方法时,即git不遵循目录。在.gitignore中输入:

dirtokeep/**
!dirtokeep/.keep

.keep应该是dirtokeep中的零长度文件。

其结果是,除了dirtokeep/.keep之外,dirtokeep中的所有内容都将被忽略,这将导致在clone/checkout时构造dirtokeep目录。

其他回答

Git现在内置了这个功能

git check-ignore *

当然,您可以将glob更改为**/*.dll

Git参考

如果您只需要一个被忽略的文件的有效列表(无论它们如何被忽略),并且没有任何额外的通知和日志。

一旦创建,任何地方(在Gitbash中)都可以运行:

git ignore-list

通过执行以下操作创建:

git config --global alias.ignore-list "! cd -- \"\${GIT_PREFIX:-.}\" && git ls-files -v \${1:-.} | sed -n -e \"s,^[a-z] \(.*\)$,\${GIT_PREFIX:-./}\1,p\" && git status --ignored --porcelain \${1:-.} 2>/dev/null | sed -n -e \"s/^\(\\!\\! \)\(.*\)$/\2/p\" #"

示例用法,假设这是最初的提交,并且您希望推送所有内容,请尝试:git忽略列表|xargs git add-f

笔记:

它已经过测试,可以在macOS和Windows平台上运行!当您cd到目录中时,只列出从该目录(或其子目录)忽略的文件。最后,始终记录相对于根目录的路径(其中包含.git目录,无论您插入哪个目录)。

另一个有用的东西是人类可读性,比如如果忽略了整个目录,比如build或node_modules,这将只记录目录名。而gitls文件--others-i--排除每个文件的标准命令日志(适用于xargs)。

我会的

git status --porcelain --ignored

并且只列出忽略的文件

git status --porcelain --ignored | grep '^[!][!] '

笔记:

小白的答案更简单(git1.7.6+):gitstatus--忽略(如“有没有方法告诉gitstatus忽略.gitignore文件的影响?”)MattDiPasquale的答案(有待投票)gitclean-ndX适用于较旧的git,显示了可以删除哪些被忽略的文件的预览(无需删除任何内容)


同样有趣的是(在qwertymk的回答中提到),您还可以使用git-check-ignore-v命令,至少在Unix上是这样的(在CMD Windows会话中不起作用)

git check-ignore *
git check-ignore -v *

第二个显示.gitignore的实际规则,它使文件在git repo中被忽略。在Unix上,使用“什么递归扩展到当前目录中的所有文件?”和bash4+:

git check-ignore **/*

(或find-exec命令)

注:https://stackoverflow.com/users/351947/RafiB.在评论中建议避免(危险的)全球明星:

git check-ignore -v $(find . -type f -print)

不过,请确保从.git/子文件夹中排除文件。

CervEd在评论中建议,避免使用.git/:

find . -not -path './.git/*' | git check-ignore --stdin

原答覆42009)

git ls-files -i

除非其源代码表明:

if (show_ignored && !exc_given) {
                fprintf(stderr, "%s: --ignored needs some exclude pattern\n",
                        argv[0]);

例外?

事实证明,在-i后面还需要一个参数来实际列出任何内容:

Try:

git ls-files -i --exclude-from=[Path_To_Your_Global].gitignore

(但这只会列出缓存的(非忽略的)对象,并带有过滤器,所以这不是您想要的)


例子:

$ cat .git/ignore
# ignore objects and archives, anywhere in the tree.
*.[oa]
$ cat Documentation/.gitignore
# ignore generated html files,
*.html
# except foo.html which is maintained by hand
!foo.html
$ git ls-files --ignored \
    --exclude='Documentation/*.[0-9]' \
    --exclude-from=.git/ignore \
    --exclude-per-directory=.gitignore

实际上,在我的“gitignore”文件(称为“exclude”)中,我找到了一个命令行,可以帮助您:

F:\prog\git\test\.git\info>type exclude
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~

所以

git ls-files --ignored --exclude-from=.git/info/exclude
git ls-files -i --exclude-from=.git/info/exclude

git ls-files --others --ignored --exclude-standard
git ls-files -o -i --exclude-standard

应该会成功。

(感谢honzajde在评论中指出,git-ls-files-o-i--exclude from…不包含缓存文件:只有git-ls-file-i--exclusive from…(不包含-o)包含缓存文件。)

正如ls文件手册页中提到的,其他文件是重要的部分,以便向您展示未缓存、未提交、通常被忽略的文件。

--excludestandard不仅仅是一种快捷方式,而是一种包含所有标准“忽略模式”设置的方法。

排除标准在每个目录中添加标准的git排除:.git/info/exclude、.gitignore和用户的全局排除文件。

虽然通常正确,但解决方案并非在所有情况下都有效。假设回购目录如下:

# ls **/*                                                                                                       
doc/index.html  README.txt  tmp/dir0/file0  tmp/file1  tmp/file2

doc:
index.html

tmp:
dir0  file1  file2

tmp/dir0:
file0

和这样的.gitignore:

# cat .gitignore
doc
tmp/*

这将忽略doc目录和tmp下的所有文件。Git按预期工作,但用于列出被忽略文件的给定命令没有。让我们来看看git要说什么:

# git ls-files --others --ignored --exclude-standard                                                            
tmp/file1
tmp/file2

请注意,列表中缺少doc。您可以通过以下方式获得:

# git ls-files --others --ignored --exclude-standard --directory                                                
doc/

请注意附加的--directory选项。

据我所知,没有一个命令可以同时列出所有被忽略的文件。但我不知道为什么tmp/dir0根本不出现。