Git Product home page Git Product logo

Comments (4)

kaelzhang avatar kaelzhang commented on June 24, 2024

I don't exactly understand your problem

from node-ignore.

wmertens avatar wmertens commented on June 24, 2024

I would like to know, for a given path, if all possible subpaths are ignored, or not.

In other words, is there a matching regex that ignores the path and no unignore regexes that match subpaths?

This knowledge is useful for monitoring a git workdir on Linux for changes. You can't get filesystem events for subtrees so you must recurse, and if a subtree is fully ignored you don't need to recurse into it.

from node-ignore.

kaelzhang avatar kaelzhang commented on June 24, 2024

An optional prefix "!" which negates the pattern; any matching file excluded by a previous pattern will become included again. It is not possible to re-include a file if a parent directory of that file is excluded. Git doesnโ€™t list excluded directories for performance reasons, so any patterns on contained files have no effect, no matter where they are defined. Put a backslash ("") in front of the first "!" for patterns that begin with a literal "!", for example, "!important!.txt".

From gitignore spec

And node-ignore is an JavaScript implementation according to the gitignore spec

I suggest to get better understanding about the usage of .gitignore file

from node-ignore.

kaelzhang avatar kaelzhang commented on June 24, 2024
/*/
!/bar/hello/

Will not work expectedly, coz /bar is already ignored

Change it to

/*
!/bar
/bar/*
!/bar/hello

from node-ignore.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.