.gitignore 1.3 KB

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