I've noticed that there's a lot of junk in .gitignore that really shouldn't be there:
/*.tar.gz /dist/dist-extras/julia.bat/oprofile_data/source-dist.tmp/source-dist.tmp1/perf*.DS_Store.idea/*A lot of this just doesn't make sense, some of it should be in people's global .gitignore files. It's hard to know though since different platforms generate different files that should be ignored. There's also a lot of *.ext type patterns that should be scoped more strictly inside of src, e.g.
some of it should be in people's global
.gitignorefiles
While I agree with this, what's the harm in keeping it? Might just make life slightly easier for a newcomer.
macos makes .DS_Store for (almost) every directory, i would keep it
Yeah, I don’t mind those so much but why the heck are we ignoring *.tar.gz files?
Most helpful comment
While I agree with this, what's the harm in keeping it? Might just make life slightly easier for a newcomer.