git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Discrepancy between git-check-ignore and git-status for negated pattern
@ 2017-10-26 18:40 Guido Flohr
  0 siblings, 0 replies; only message in thread
From: Guido Flohr @ 2017-10-26 18:40 UTC (permalink / raw)
  To: git

This .gitignore file does not work as expected with git-check-ignore:

    *.o
    !a.o

It seems that “git check-ignore a.o” ignores that “a.o” was re-included.  This is what happens:

    $ git --version
    git version 2.15.0.rc2.48.g4e40fb302
    $ mkdir repo
    $ cd repo
    $ git init
    Initialized empty Git repository in /path/to/repo/.git/
    $ echo '*.o' >.gitignore
    $ echo '!a.o' >>.gitignore
    $ >a.o
    $ >b.o
    $ git check-ignore a.o b.o
    a.o
    b.o
    $ git status --short
    ?? a.o

According to git-check-ignore, “a.o” is ignored.  According to git-status, it is not.

Is that a bug or did I miss something because of my limited search capabilities?

Tested on a Mac with current master from git.  The 2.13.4 binary from Mac Ports exhibits the same behavior. 

Thanks!

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-10-26 18:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-26 18:40 Discrepancy between git-check-ignore and git-status for negated pattern Guido Flohr

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).