.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. # ---> Python
  41. # Byte-compiled / optimized / DLL files
  42. __pycache__/
  43. *.py[cod]
  44. *$py.class
  45. # C extensions
  46. *.so
  47. # Distribution / packaging
  48. .Python
  49. env/
  50. build/
  51. develop-eggs/
  52. dist/
  53. downloads/
  54. eggs/
  55. .eggs/
  56. lib/
  57. lib64/
  58. parts/
  59. sdist/
  60. var/
  61. *.egg-info/
  62. .installed.cfg
  63. *.egg
  64. # PyInstaller
  65. # Usually these files are written by a python script from a template
  66. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  67. *.manifest
  68. *.spec
  69. # Installer logs
  70. pip-log.txt
  71. pip-delete-this-directory.txt
  72. # Unit test / coverage reports
  73. htmlcov/
  74. .tox/
  75. .coverage
  76. .coverage.*
  77. .cache
  78. nosetests.xml
  79. coverage.xml
  80. *,cover
  81. # Translations
  82. *.mo
  83. *.pot
  84. # Django stuff:
  85. *.log
  86. # Sphinx documentation
  87. docs/_build/
  88. # PyBuilder
  89. target/
  90. # ---> C++
  91. # Compiled Object files
  92. *.slo
  93. *.lo
  94. *.o
  95. *.obj
  96. # Precompiled Headers
  97. *.gch
  98. *.pch
  99. # Compiled Dynamic libraries
  100. *.so
  101. *.dylib
  102. *.dll
  103. # Fortran module files
  104. *.mod
  105. # Compiled Static libraries
  106. *.lai
  107. *.la
  108. *.a
  109. *.lib
  110. # Executables
  111. *.exe
  112. *.out
  113. *.app
  114. # ---> Java
  115. *.class
  116. # Mobile Tools for Java (J2ME)
  117. .mtj.tmp/
  118. # Package Files #
  119. *.jar
  120. *.war
  121. *.ear
  122. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  123. hs_err_pid*
  124. # ---> Android
  125. # Built application files
  126. *.apk
  127. *.ap_
  128. # Files for the Dalvik VM
  129. *.dex
  130. # Java class files
  131. *.class
  132. # Generated files
  133. bin/
  134. gen/
  135. # Gradle files
  136. .gradle/
  137. build/
  138. # Local configuration file (sdk path, etc)
  139. local.properties
  140. # Proguard folder generated by Eclipse
  141. proguard/
  142. # Log Files
  143. *.log
  144. # Android Studio Navigation editor temp files
  145. .navigation/
  146. # Android Studio captures folder
  147. captures/
  148. # ---> Linux
  149. *~
  150. # KDE directory preferences
  151. .directory
  152. # Linux trash folder which might appear on any partition or disk
  153. .Trash-*