1
0

.gitignore 1.5 KB

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