.gitignore 1.7 KB

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