Git Product home page Git Product logo

Comments (3)

sabhiram avatar sabhiram commented on July 21, 2024

Hmm, I wrote this a whiles back. If anything I would want to make the constructor more idiomatic - ala gitignore.New(...) and then be able to Add(...) lines.

from go-gitignore.

viktorstrate avatar viktorstrate commented on July 21, 2024

That would be a better solution 👍

from go-gitignore.

phanirithvij avatar phanirithvij commented on July 21, 2024

Hmm, this would require re-implementing the line logic implemented in #15.
Like, adding a Source: string field to IgnorePattern maybe?
If we look at git check-ignore -v command's output e.g.

$ cat .gitignore
*.exe
*.test
*.prof

$ cat sample\.gitignore
*.test

$ mkdir -p sample sample/deep

$ touch upper.test sample/sample.test sample/deep/deeper.test

$ git check-ignore -v sample\sample.test upper.test sample\deep\deeper.test
sample/.gitignore:1:*.test      "sample\\sample.test"
.gitignore:26:*.test    upper.test
sample/.gitignore:1:*.test      "sample\\deep\\deeper.test"
  • Looks like git is prioritizing the nearest parent gitignore file (my speculation from above *.test pattern's output).
  • Here Sources will be .gitginore and sample/.gitignore.
  • CompileIgnoreFile can set Source as the fpath.
  • Not sure about CompileIgnoreLines (empty string or ignore if not passed?).

Also, I'm on windows, so not sure how git check-ignore outputs things on Linux (\\ or /)

from go-gitignore.

Related Issues (13)

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.