I have been using git for some time now. For my project, I have created a .gitignore
file which works well. As the project grows, I have started creating some files of my own (logs, scripts and so on) which I don't want to include in the repository. As of now, when I type git status
, I see these files listed and I simply ignore them (which becomes more and more annoying as the list grows). The problem is that I also don't want to pollute the repo's public .gitignore
file by adding all my personal stuff to it.
Is there a way to hide these files when I git status
?
I have looked for some #include
-like directive which all user could use to insert a personal list, but have found nothing so far. Does such an option exist?