.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. # ---> Qt
  2. # C++ objects and libs
  3. build_partial.sh
  4. deploy.sh
  5. *.slo
  6. *.lo
  7. *.o
  8. *.a
  9. *.la
  10. *.lai
  11. *.so
  12. *.dll
  13. *.dylib
  14. # Qt-es
  15. /.qmake.cache
  16. /.qmake.stash
  17. *.pro.user
  18. *.pro.user.*
  19. *.qbs.user
  20. *.qbs.user.*
  21. *.moc
  22. moc_*.cpp
  23. qrc_*.cpp
  24. ui_*.h
  25. Makefile*
  26. *-build-*
  27. # QtCreator
  28. *.autosave
  29. #QtCtreator Qml
  30. *.qmlproject.user
  31. *.qmlproject.user.*
  32. # ---> Linux
  33. *~
  34. # KDE directory preferences
  35. .directory
  36. # Linux trash folder which might appear on any partition or disk
  37. .Trash-*
  38. # ---> C++
  39. # Compiled Object files
  40. *.slo
  41. *.lo
  42. *.o
  43. *.obj
  44. # Precompiled Headers
  45. *.gch
  46. *.pch
  47. # Compiled Dynamic libraries
  48. *.so
  49. *.dylib
  50. *.dll
  51. # Fortran module files
  52. *.mod
  53. # Compiled Static libraries
  54. *.lai
  55. *.la
  56. *.a
  57. *.lib
  58. # Executables
  59. *.exe
  60. *.out
  61. *.app
  62. # ---> C
  63. # Object files
  64. *.o
  65. *.ko
  66. *.obj
  67. *.elf
  68. # Precompiled Headers
  69. *.gch
  70. *.pch
  71. # Libraries
  72. *.lib
  73. *.a
  74. *.la
  75. *.lo
  76. # Shared objects (inc. Windows DLLs)
  77. *.dll
  78. *.so
  79. *.so.*
  80. *.dylib
  81. # Executables
  82. *.exe
  83. *.out
  84. *.app
  85. *.i*86
  86. *.x86_64
  87. *.hex
  88. # Debug files
  89. *.dSYM/
  90. # ---> Python
  91. # Byte-compiled / optimized / DLL files
  92. __pycache__/
  93. *.py[cod]
  94. *$py.class
  95. # C extensions
  96. *.so
  97. # Distribution / packaging
  98. .Python
  99. env/
  100. build/
  101. develop-eggs/
  102. dist/
  103. downloads/
  104. eggs/
  105. .eggs/
  106. lib/
  107. lib64/
  108. parts/
  109. sdist/
  110. var/
  111. *.egg-info/
  112. .installed.cfg
  113. *.egg
  114. # PyInstaller
  115. # Usually these files are written by a python script from a template
  116. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  117. *.manifest
  118. *.spec
  119. # Installer logs
  120. pip-log.txt
  121. pip-delete-this-directory.txt
  122. # Unit test / coverage reports
  123. htmlcov/
  124. .tox/
  125. .coverage
  126. .coverage.*
  127. .cache
  128. nosetests.xml
  129. coverage.xml
  130. *,cover
  131. # Translations
  132. *.mo
  133. *.pot
  134. # Django stuff:
  135. *.log
  136. # Sphinx documentation
  137. docs/_build/
  138. # PyBuilder
  139. target/
  140. # ---> ROS
  141. build/
  142. bin/
  143. lib/
  144. msg_gen/
  145. srv_gen/
  146. msg/*Action.msg
  147. msg/*ActionFeedback.msg
  148. msg/*ActionGoal.msg
  149. msg/*ActionResult.msg
  150. msg/*Feedback.msg
  151. msg/*Goal.msg
  152. msg/*Result.msg
  153. msg/_*.py
  154. # Generated by dynamic reconfigure
  155. *.cfgc
  156. /cfg/cpp/
  157. /cfg/*.py
  158. # Ignore generated docs
  159. *.dox
  160. *.wikidoc
  161. # eclipse stuff
  162. .project
  163. .cproject
  164. # qcreator stuff
  165. CMakeLists.txt.user
  166. srv/_*.py
  167. *.pcd
  168. *.pyc
  169. qtcreator-*
  170. *.user
  171. /planning/cfg
  172. /planning/docs
  173. /planning/src
  174. *~
  175. # Emacs
  176. .#*
  177. # Catkin custom files
  178. CATKIN_IGNORE
  179. # protobuf
  180. *.pb.cc
  181. *.pb.h
  182. *.swp