.gitignore.orig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <<<<<<< HEAD
  2. # ---> C++
  3. # Compiled Object files
  4. *.slo
  5. *.lo
  6. *.o
  7. *.obj
  8. # Precompiled Headers
  9. *.gch
  10. *.pch
  11. # Compiled Dynamic libraries
  12. *.so
  13. *.dylib
  14. *.dll
  15. # Fortran module files
  16. *.mod
  17. # Compiled Static libraries
  18. *.lai
  19. *.la
  20. *.a
  21. *.lib
  22. # Executables
  23. *.exe
  24. *.out
  25. *.app
  26. # ---> C
  27. # Object files
  28. *.o
  29. *.ko
  30. *.obj
  31. *.elf
  32. # Precompiled Headers
  33. *.gch
  34. *.pch
  35. # Libraries
  36. *.lib
  37. *.a
  38. *.la
  39. *.lo
  40. # Shared objects (inc. Windows DLLs)
  41. *.dll
  42. *.so
  43. *.so.*
  44. *.dylib
  45. # Executables
  46. *.exe
  47. *.out
  48. *.app
  49. *.i*86
  50. *.x86_64
  51. *.hex
  52. # Debug files
  53. *.dSYM/
  54. =======
  55. # ---> Python
  56. # Byte-compiled / optimized / DLL files
  57. __pycache__/
  58. *.py[cod]
  59. *$py.class
  60. .vscode/
  61. # C extensions
  62. *.so
  63. # Distribution / packaging
  64. .Python
  65. env/
  66. build/
  67. develop-eggs/
  68. dist/
  69. downloads/
  70. eggs/
  71. .eggs/
  72. lib/
  73. lib64/
  74. parts/
  75. sdist/
  76. var/
  77. *.egg-info/
  78. .installed.cfg
  79. *.egg
  80. # PyInstaller
  81. # Usually these files are written by a python script from a template
  82. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  83. *.manifest
  84. *.spec
  85. # Installer logs
  86. pip-log.txt
  87. pip-delete-this-directory.txt
  88. # Unit test / coverage reports
  89. htmlcov/
  90. .tox/
  91. .coverage
  92. .coverage.*
  93. .cache
  94. nosetests.xml
  95. coverage.xml
  96. *,cover
  97. # Translations
  98. *.mo
  99. *.pot
  100. # Django stuff:
  101. *.log
  102. # Sphinx documentation
  103. docs/_build/
  104. # PyBuilder
  105. target/
  106. >>>>>>> origin/master