Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Repo specific ignore files in git

Tags:

git

gitignore

Is it possible to have repo specific .gitignore files? Eg:

[origin] .gitignore:

  • foo1.*
  • foo2.*

[another] .gitignore:

  • bar1.*
  • bar2.*

The purpose behind this is that we deploy using git on to a managed cloud service and we'd like to keep dev files in version control but not push them to a repo.

like image 942
Ahmed Nuaman Avatar asked Nov 01 '11 10:11

Ahmed Nuaman


1 Answers

Yes, you can put per repository ignore patterns in .git/info/exclude in each repository.

(Note, this only affects what is ignored in each repository, it won't affect files that you actively place under source control and the push. I'm not completely clear on your desired use case.)

like image 150
CB Bailey Avatar answered Oct 07 '22 01:10

CB Bailey