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

我的项目源树:

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

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

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

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

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


当前回答

假设有几个忽略目录,为什么不使用“gitstatus node/logs/”来告诉您要添加哪些文件?在目录中,我有一个不属于状态输出的文本文件,例如:

在分支主机上您的分支机构已更新“origin/master”。未跟踪的文件:(使用“git add…”将提交的内容包括在内)

    node/logs/.gitignore 

.gitignore是:

*!.忽略

其他回答

有一种更简单的方法(git1.7.6+):

git status --ignored

请参阅有没有方法告诉gitstatus忽略.gitignore文件的影响?

笔记:

小白的答案更简单(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和用户的全局排除文件。

(扩展其他答案)

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

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

dirtokeep/**
!dirtokeep/.keep

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

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

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

一旦创建,任何地方(在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 ls-files --others -i --exclude-standard

因为这涵盖了

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

因此后者是冗余的。

您可以通过在~/.gitconfig文件中添加别名来简化此过程:

git config --global alias.ignored "ls-files --others -i --exclude-standard"

现在您只需键入git-ignored即可查看列表。更容易记住,打字更快。

如果您更喜欢Jason耿的解决方案的简洁显示,可以添加别名,如下所示:

git config --global alias.ignored "status --ignored -s"

然而,更详细的输出对于解决.gitignore文件的问题更有用,因为它列出了每个被忽略的棉花拾取文件。通常情况下,您会通过grep管道发送结果,以查看您希望忽略的文件是否在其中,或者您不想忽略的文件在其中。

git ignored | grep some-file-that-isnt-being-ignored-properly

然后,当你只想看到一个简短的显示时,很容易记住并输入

git status --ignored

(-s通常可以省略。)