If you are working in an organisation repository where there are multiple contributors and also a different usage of IDE, is it good practice to gitignore files such as.idea
, *.code-workspace
etc? I would like to find some reputable source, but I have the feeling that such settings should be omitted as they reflect individual developers' settings. What is your view?
Thank you
Yes, it generally is appropriate to ignore IDE metadata. You don't usually want that in your code repository since it really has nothing to do with the project code.
Of course, situations vary and it may make sense for your team to do so. Git documentation won't make that call for you.