.gitignore 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #==============================================================================#
  2. # This file specifies intentionally untracked files that git should ignore.
  3. # See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
  4. #
  5. # This file is intentionally different from the output of `git svn show-ignore`,
  6. # as most of those are useless.
  7. #==============================================================================#
  8. #==============================================================================#
  9. # File extensions to be ignored anywhere in the tree.
  10. #==============================================================================#
  11. # Temp files created by most text editors.
  12. *~
  13. # Merge files created by git.
  14. *.orig
  15. # Byte compiled python modules.
  16. *.pyc
  17. # vim swap files
  18. .*.sw?
  19. .sw?
  20. #==============================================================================#
  21. # Explicit files to ignore (only matches one).
  22. #==============================================================================#
  23. cscope.files
  24. cscope.out
  25. #==============================================================================#
  26. # Directories to ignore (do not add trailing '/'s, they skip symlinks).
  27. #==============================================================================#
  28. # Clang extra user tools, which is tracked independently (clang-tools-extra).
  29. tools/extra
  30. # Sphinx build products
  31. docs/_build
  32. docs/analyzer/_build