I'm working on Fedora 22. When I perform a git status
it lists all the *.o
files. I don't recall seeing the behavior in the past.
I looked at the project's .gitginore
file delivered via git clone
, and it lacks a rule for *.o
. I would like to add *.o
, but I would like to do it for non-Windows platforms only. Windows uses *.obj
, so its not needed. Plus, *.o
is used for some programs on Windows (IIRC).
Is it possible to specify *.o
for non-Windows platforms? If so, how?