Re: git-add ignores exclude markers for ignored files
From: Junio C Hamano <hidden>
Date: 2026-01-20 20:46:21
Junio C Hamano [off-list ref] writes:
"Rahn, René" [off-list ref] writes:quoted
Steps to reproduce: mkdir git-add-test cd git-add-test git init touch .gitignore echo “ignored.txt” >>.gitignore touch ignored.txt git add --“:(exclude)ignored.txt” Expected behavior: The git add command recognizes that the file ignored.txt is already excluded despite of it being ignored by some gitignore and thus does not check if it is ignored or not. It simply will not be added. Note forcing git-add will do the trick, but this could also have side effects for some files that are ignored but not present in the list of excluded files. Hence, this can’t be the right solution.It is not quite clear what you want to see. The command would not add ignored.text even if you give ":(exclude)ignored.txt" from the command line, would it? This may be an ancient regression when e1b8c7bd (dir: remove struct path_simplify, 2017-01-04) was rewritten exclude_matches_pathspec() function, which was written in 29209cbe (dir: fix COLLECT_IGNORED on excluded prefixes, 2010-03-11), back in the days before ":(exclude)" and other pathspec magic was even invented. Perhaps try this patch? I have no idea what the ramifications of the change is, though. There may be unintended fallouts in some distant corner, even though it does not seem to break any existing tests.
As I haven't heard from anybody if this patch improves the reported situation or there are unintended behaviour changes that degrades the system, I'll drop this topic from 'seen' soonish, as this topic is not exactly my itch. That does not mean that it is unwelcome if motivated others pick up the patch and polish it to bring it to the finish line. Anybody doing so should consult the original discussion thread [*]. Thanks. [Reference] * https://lore.kernel.org/git/xmqqtsz9o3cn.fsf@gitster.g/ (local)