* git ls-files -o seems to ignore .gitignore
@ 2014-10-27 6:16 Richard PALO
2014-10-27 6:47 ` Charles Bailey
0 siblings, 1 reply; 4+ messages in thread
From: Richard PALO @ 2014-10-27 6:16 UTC (permalink / raw)
To: git
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I'm having an issue in that 'git ls-files -o' seems to ignore
[parts of] .gitignore whereas other commands, such as 'git status'
seem fine.
Here is an example:
> richard@omnis:/home/richard/src/pkgsrc$ export LANG=C
> richard@omnis:/home/richard/src/pkgsrc$ git --version git version
> 2.1.2 richard@omnis:/home/richard/src/pkgsrc$ cat .gitignore
> pkgchk*.conf* .#* README*.html
> richard@omnis:/home/richard/src/pkgsrc$ git status On branch dev
>
> It took 6.82 seconds to enumerate untracked files. 'status -uno'
> may speed it up, but you have to be careful not to forget to add
> new files yourself (see 'git help status'). nothing to commit,
> working directory clean richard@omnis:/home/richard/src/pkgsrc$ git
> ls-files -o |grep -c README 12393
Known issue?
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
iQEcBAEBAgAGBQJUTeNRAAoJECAB22fHtp27hckH+wdDHV3oZqatSIqNdhUCUxsJ
jR8tZpQxoKfV944aPBgH4/CXkCtFFSvnGKfH+plij+Y5ggZwfDQ3lXIg1qOsH3qj
9mvudRuFxwujXfFSTHdReqQxFT8p3roZjB0GdwoiFeBIsQ8CLfGjxfQZDQU18i3/
IfR682UbzuiR6kodhD5oX/I2S5l5dRRuabQq5t2zJL9BHmGleLaBgOjnne7T26PC
JpNMt+60J93J9VzBN9kQABAO5BMUE4mN6g2141N9JXlMsg6DSGHPN5vQD7t7IxE1
mtNX9iMrjFa1Hsm2neXqvjb95ZGbZwTnxFcI7To6P3V/+v9QMpKrrBWu/AFNdF0=
=84q1
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git ls-files -o seems to ignore .gitignore
2014-10-27 6:16 git ls-files -o seems to ignore .gitignore Richard PALO
@ 2014-10-27 6:47 ` Charles Bailey
2014-10-27 8:31 ` Matthieu Moy
0 siblings, 1 reply; 4+ messages in thread
From: Charles Bailey @ 2014-10-27 6:47 UTC (permalink / raw)
To: Richard PALO; +Cc: git
On Mon, Oct 27, 2014 at 07:16:49AM +0100, Richard PALO wrote:
> Hash: SHA1
>
> I'm having an issue in that 'git ls-files -o' seems to ignore
> [parts of] .gitignore whereas other commands, such as 'git status'
> seem fine.
This is, as far as I am aware, by design. If you want to apply the
standard ignore rules to the output of ls-files -o then you can use the
--exclude-standard option.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git ls-files -o seems to ignore .gitignore
2014-10-27 6:47 ` Charles Bailey
@ 2014-10-27 8:31 ` Matthieu Moy
2014-10-27 9:22 ` richard.palo
0 siblings, 1 reply; 4+ messages in thread
From: Matthieu Moy @ 2014-10-27 8:31 UTC (permalink / raw)
To: Charles Bailey; +Cc: Richard PALO, git
Charles Bailey <charles@hashpling.org> writes:
> On Mon, Oct 27, 2014 at 07:16:49AM +0100, Richard PALO wrote:
>> Hash: SHA1
>>
>> I'm having an issue in that 'git ls-files -o' seems to ignore
>> [parts of] .gitignore whereas other commands, such as 'git status'
>> seem fine.
>
> This is, as far as I am aware, by design.
I would not call that "by design", but indeed "git ls" was written this
way, and it's a plumbing command for which we do not want
backward-incompatible changes. So, --exclude-standard is available, but
not activated by default.
--
Matthieu Moy
http://www-verimag.imag.fr/~moy/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git ls-files -o seems to ignore .gitignore
2014-10-27 8:31 ` Matthieu Moy
@ 2014-10-27 9:22 ` richard.palo
0 siblings, 0 replies; 4+ messages in thread
From: richard.palo @ 2014-10-27 9:22 UTC (permalink / raw)
To: Matthieu Moy; +Cc: Richard PALO, git, Charles Bailey
Well, ok. Not very intuitive, so I added an alias in .gitconfig...
'ls = ls-files --exclude-standard' and that seems to work now alright for me.
Thanks
----- Mail original -----
> De: "Matthieu Moy" <Matthieu.Moy@grenoble-inp.fr>
> À: "Charles Bailey" <charles@hashpling.org>
> Cc: "Richard PALO" <richard@netbsd.org>, git@vger.kernel.org
> Envoyé: Lundi 27 Octobre 2014 09:31:56
> Objet: Re: git ls-files -o seems to ignore .gitignore
>
> Charles Bailey <charles@hashpling.org> writes:
>
> > On Mon, Oct 27, 2014 at 07:16:49AM +0100, Richard PALO wrote:
> >> Hash: SHA1
> >>
> >> I'm having an issue in that 'git ls-files -o' seems to ignore
> >> [parts of] .gitignore whereas other commands, such as 'git status'
> >> seem fine.
> >
> > This is, as far as I am aware, by design.
>
> I would not call that "by design", but indeed "git ls" was written
> this
> way, and it's a plumbing command for which we do not want
> backward-incompatible changes. So, --exclude-standard is available,
> but
> not activated by default.
>
> --
> Matthieu Moy
> http://www-verimag.imag.fr/~moy/
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-10-27 9:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-27 6:16 git ls-files -o seems to ignore .gitignore Richard PALO
2014-10-27 6:47 ` Charles Bailey
2014-10-27 8:31 ` Matthieu Moy
2014-10-27 9:22 ` richard.palo
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).