.gitignore 455 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Ignore all files without extension.
  2. # If you need to git-add a file without extension, add -f
  3. *
  4. !*.*
  5. !*/
  6. *.o
  7. *.a
  8. *.log
  9. *.pb.cc
  10. *.pb.h
  11. *.prof
  12. *.so
  13. *.dylib
  14. *.rej
  15. /output
  16. /test/output
  17. build/
  18. # Ignore hidden files
  19. .*
  20. *.swp
  21. # Ignore auto-generated files
  22. config.mk
  23. src/butil/config.h
  24. # Ignore CMake files
  25. CMakeCache.txt
  26. CMakeFiles
  27. CMakeScripts
  28. Testing
  29. cmake_install.cmake
  30. install_manifest.txt
  31. compile_commands.json
  32. CTestTestfile.cmake
  33. /cmake-build-debug/