Git: .gitignore

  • The .gitignore file contains the files to be ignored by Git
  • Works with wildcards
    Eg: .* - ignore all files starting with a .
  • Useful for ignoring files specific to your local development environment:
    • Codeblocks or VScode configuration files
    • ./node_modules folder in Node.js