Search code examples
c++gitcodeblocksgitignore

What is the basic .gitignore to use with Codeblocks C++ Projects?


This is what I have so far:

obj/
bin/

Is there anything else that should definitely be listed here?


Solution

  • You can use this:

    *.layout
    *.depend
    bin/
    obj/
    

    See: https://www.gitignore.io/api/codeblocks