Programming in C ++ for Linux, when compiling the code with g ++, three files are generated:
file.o
file
The last one, in this system, is the executable binary generated by cpp.
If I wanted to ignore the files:
#.gitignore
*.o
# ... outros arquivos desnecessarios, alem do cpp
How can I do to skip files without extension?