.gitignore 759 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. # ---> C++
  41. # Compiled Object files
  42. *.slo
  43. *.lo
  44. *.o
  45. *.obj
  46. # Precompiled Headers
  47. *.gch
  48. *.pch
  49. # Compiled Dynamic libraries
  50. *.so
  51. *.dylib
  52. *.dll
  53. # Fortran module files
  54. *.mod
  55. # Compiled Static libraries
  56. *.lai
  57. *.la
  58. *.a
  59. *.lib
  60. # Executables
  61. *.exe
  62. *.out
  63. *.app