Jonny
Jonny

Reputation: 19

GIT ignore files

I have a project for example test".
In test project I have another project test2

How to do ignore some files from test2 ? I can only ignore all project test but I want to only some files from test2

project-test1
  project-test2
        someFiles in project

Upvotes: 0

Views: 66

Answers (1)

paxdiablo
paxdiablo

Reputation: 881113

Each directory in the tree can have its own .gitignore file, you don't need to maintain some massive collection at the top -level. I consider this preferable since it localises the information to where it's most relevant.

For your particular requirements, I would place a .gitignore into the project-test2 directory, listing the files you want ignored.

Upvotes: 1

Related Questions