.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. # ---> ROS
  2. devel/
  3. build/
  4. bin/
  5. lib/
  6. msg_gen/
  7. srv_gen/
  8. msg/*Action.msg
  9. msg/*ActionFeedback.msg
  10. msg/*ActionGoal.msg
  11. msg/*ActionResult.msg
  12. msg/*Feedback.msg
  13. msg/*Goal.msg
  14. msg/*Result.msg
  15. msg/_*.py
  16. # Generated by dynamic reconfigure
  17. *.cfgc
  18. /cfg/cpp/
  19. /cfg/*.py
  20. # Ignore generated docs
  21. *.dox
  22. *.wikidoc
  23. # eclipse stuff
  24. .project
  25. .cproject
  26. # qcreator stuff
  27. CMakeLists.txt.user
  28. srv/_*.py
  29. *.pcd
  30. *.pyc
  31. qtcreator-*
  32. *.user
  33. /planning/cfg
  34. /planning/docs
  35. /planning/src
  36. *~
  37. # Emacs
  38. .#*
  39. # Catkin custom files
  40. CATKIN_IGNORE
  41. # ---> Python
  42. # Byte-compiled / optimized / DLL files
  43. __pycache__/
  44. *.py[cod]
  45. *$py.class
  46. # C extensions
  47. *.so
  48. # Distribution / packaging
  49. .Python
  50. env/
  51. build/
  52. develop-eggs/
  53. dist/
  54. downloads/
  55. eggs/
  56. .eggs/
  57. lib/
  58. lib64/
  59. parts/
  60. sdist/
  61. var/
  62. *.egg-info/
  63. .installed.cfg
  64. *.egg
  65. # PyInstaller
  66. # Usually these files are written by a python script from a template
  67. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  68. *.manifest
  69. *.spec
  70. # Installer logs
  71. pip-log.txt
  72. pip-delete-this-directory.txt
  73. # Unit test / coverage reports
  74. htmlcov/
  75. .tox/
  76. .coverage
  77. .coverage.*
  78. .cache
  79. nosetests.xml
  80. coverage.xml
  81. *,cover
  82. # Translations
  83. *.mo
  84. *.pot
  85. # Django stuff:
  86. *.log
  87. # Sphinx documentation
  88. docs/_build/
  89. # PyBuilder
  90. target/
  91. # ---> C++
  92. # Compiled Object files
  93. *.slo
  94. *.lo
  95. *.o
  96. *.obj
  97. # Precompiled Headers
  98. *.gch
  99. *.pch
  100. # Compiled Dynamic libraries
  101. *.so
  102. *.dylib
  103. *.dll
  104. # Fortran module files
  105. *.mod
  106. # Compiled Static libraries
  107. *.lai
  108. *.la
  109. *.a
  110. *.lib
  111. # Executables
  112. *.exe
  113. *.out
  114. *.app
  115. .vscode/