From: Jeff King <peff@peff.net>
To: "Raúl Núñez de Arenas Coronado" <raulnac@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: Fwd: Unexpected behavior of ls-files command when using --others --exclude-from, and a .gitignore file which resides in a subdirectory
Date: Mon, 22 Jan 2024 16:34:10 -0500 [thread overview]
Message-ID: <20240122213410.GA811766@coredump.intra.peff.net> (raw)
In-Reply-To: <CAGF1KhWiYX=3R01Odj2yCNgvx=f5+HRCjRJogWf5eBikuATCcg@mail.gmail.com>
On Mon, Jan 22, 2024 at 09:45:46PM +0100, Raúl Núñez de Arenas Coronado wrote:
> But when using 'git ls-files --others --exclude-from=<file>', when
> <file> is one of those .gitignore files present in a subdir, makes the
> command use the patterns in that .gitgnore (in this case, the "*")
> against ALL files that would otherwise be listed by using '--others'.
>
> In short: using 'git ls-files --others
> --exclude-from=subdir/.gitignore' results in an empty listing if
> subdir/.gitignore contains '*". IMHO that pattern should be applied to
> the subdir contents and not to the contents of the current directory.
> That would be consistent with how git uses .gitignore files in
> subfolders.
I think Junio covered this with his example, and everything is behaving
as intended (my mental model is that "--exclude-from" is something like
.git/info/exclude or the core.excludesFile option).
But...
> The obvious solution is to use --exclude-per-directory but it is
> deprecated in favor of --exclude-standard and --exclude-standard shows
> the same behaviour of --exclude-from=subdir/.gitignore!!!
...I'm not sure what's going on here. I would think that both
--exclude-standard and --exclude-per-directory would do what you want.
For example, I get:
[setup]
$ git init
$ mkdir subdir
$ echo '*' >subdir/.gitignore
$ git add -f subdir/.gitignore && git commit -m "add gitignore"
$ touch subdir/file file
[no exclusions]
$ git ls-files -o
file
subdir/file
[use .gitignore]
$ git ls-files --exclude-per-directory=.gitignore -o
file
[using standard excludes]
$ git ls-files --exclude-standard -o
file
Do you get different results from that toy repo? If not, then what is
different about your main repo? Do you perhaps have a stray "*" match
somewhere in .git/info/exclude, etc? Or are you still providing
--exclude-from in addition to --exclude-standard?
-Peff
PS I hadn't realized that --exclude-per-directory had been marked as
deprecated. I do agree with e750951e74 (ls-files: guide folks to
--exclude-standard over other --exclude* options, 2023-01-13) in its
goal of guiding people to the easiest option, but I don't know that
there has been any discussion about removing the other ones.
next prev parent reply other threads:[~2024-01-22 21:34 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CAGF1KhWNaO_TUuCPo2L_HzNnR+FnB1Q4H6_xQ2owoH+SnynzEg@mail.gmail.com>
2024-01-22 20:45 ` Fwd: Unexpected behavior of ls-files command when using --others --exclude-from, and a .gitignore file which resides in a subdirectory Raúl Núñez de Arenas Coronado
2024-01-22 20:52 ` Junio C Hamano
2024-01-22 21:07 ` Raúl Núñez de Arenas Coronado
2024-01-22 21:42 ` Junio C Hamano
2024-01-23 6:08 ` Raúl Núñez de Arenas Coronado
2024-01-22 21:34 ` Jeff King [this message]
2024-01-22 21:45 ` Junio C Hamano
2024-01-22 21:59 ` Jeff King
2024-01-24 2:58 ` Elijah Newren
2024-01-24 17:06 ` Junio C Hamano
2024-01-24 18:57 ` Jeff King
2024-01-23 5:40 ` Raúl Núñez de Arenas Coronado
2024-01-24 1:09 ` Jeff King
2024-01-24 14:22 ` Raúl Núñez de Arenas Coronado
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240122213410.GA811766@coredump.intra.peff.net \
--to=peff@peff.net \
--cc=git@vger.kernel.org \
--cc=raulnac@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).