.gitignore 1.7 KB

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