I\'ve just started to learn C (using Thinking In C) and I\'m wondering about what files I should be ignoring in a C project\'s git repository.
No suggestion can be
You can also setup your build to happen in a subdirectory say build and then you can ignore the whole thing inside .gitignore
build
.gitignore
build/
And you're done.