.gitignore 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  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. # ---> JetBrains
  41. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  42. *.iml
  43. ## Directory-based project format:
  44. .idea/
  45. # if you remove the above rule, at least ignore the following:
  46. # User-specific stuff:
  47. # .idea/workspace.xml
  48. # .idea/tasks.xml
  49. # .idea/dictionaries
  50. # Sensitive or high-churn files:
  51. # .idea/dataSources.ids
  52. # .idea/dataSources.xml
  53. # .idea/sqlDataSources.xml
  54. # .idea/dynamic.xml
  55. # .idea/uiDesigner.xml
  56. # Gradle:
  57. # .idea/gradle.xml
  58. # .idea/libraries
  59. # Mongo Explorer plugin:
  60. # .idea/mongoSettings.xml
  61. ## File-based project format:
  62. *.ipr
  63. *.iws
  64. ## Plugin-specific files:
  65. # IntelliJ
  66. /out/
  67. # mpeltonen/sbt-idea plugin
  68. .idea_modules/
  69. # JIRA plugin
  70. atlassian-ide-plugin.xml
  71. # Crashlytics plugin (for Android Studio and IntelliJ)
  72. com_crashlytics_export_strings.xml
  73. crashlytics.properties
  74. crashlytics-build.properties
  75. # ---> VisualStudio
  76. ## Ignore Visual Studio temporary files, build results, and
  77. ## files generated by popular Visual Studio add-ons.
  78. # User-specific files
  79. *.suo
  80. *.user
  81. *.userosscache
  82. *.sln.docstates
  83. # User-specific files (MonoDevelop/Xamarin Studio)
  84. *.userprefs
  85. # Build results
  86. [Dd]ebug/
  87. [Dd]ebugPublic/
  88. [Rr]elease/
  89. [Rr]eleases/
  90. x64/
  91. x86/
  92. build/
  93. bld/
  94. [Bb]in/
  95. [Oo]bj/
  96. # Visual Studio 2015 cache/options directory
  97. .vs/
  98. # Uncomment if you have tasks that create the project's static files in wwwroot
  99. #wwwroot/
  100. # MSTest test Results
  101. [Tt]est[Rr]esult*/
  102. [Bb]uild[Ll]og.*
  103. # NUNIT
  104. *.VisualState.xml
  105. TestResult.xml
  106. # Build Results of an ATL Project
  107. [Dd]ebugPS/
  108. [Rr]eleasePS/
  109. dlldata.c
  110. # DNX
  111. project.lock.json
  112. artifacts/
  113. *_i.c
  114. *_p.c
  115. *_i.h
  116. *.ilk
  117. *.meta
  118. *.obj
  119. *.pch
  120. *.pdb
  121. *.pgc
  122. *.pgd
  123. *.rsp
  124. *.sbr
  125. *.tlb
  126. *.tli
  127. *.tlh
  128. *.tmp
  129. *.tmp_proj
  130. *.log
  131. *.vspscc
  132. *.vssscc
  133. .builds
  134. *.pidb
  135. *.svclog
  136. *.scc
  137. # Chutzpah Test files
  138. _Chutzpah*
  139. # Visual C++ cache files
  140. ipch/
  141. *.aps
  142. *.ncb
  143. *.opensdf
  144. *.sdf
  145. *.cachefile
  146. # Visual Studio profiler
  147. *.psess
  148. *.vsp
  149. *.vspx
  150. *.sap
  151. # TFS 2012 Local Workspace
  152. $tf/
  153. # Guidance Automation Toolkit
  154. *.gpState
  155. # ReSharper is a .NET coding add-in
  156. _ReSharper*/
  157. *.[Rr]e[Ss]harper
  158. *.DotSettings.user
  159. # JustCode is a .NET coding add-in
  160. .JustCode
  161. # TeamCity is a build add-in
  162. _TeamCity*
  163. # DotCover is a Code Coverage Tool
  164. *.dotCover
  165. # NCrunch
  166. _NCrunch_*
  167. .*crunch*.local.xml
  168. nCrunchTemp_*
  169. # MightyMoose
  170. *.mm.*
  171. AutoTest.Net/
  172. # Web workbench (sass)
  173. .sass-cache/
  174. # Installshield output folder
  175. [Ee]xpress/
  176. # DocProject is a documentation generator add-in
  177. DocProject/buildhelp/
  178. DocProject/Help/*.HxT
  179. DocProject/Help/*.HxC
  180. DocProject/Help/*.hhc
  181. DocProject/Help/*.hhk
  182. DocProject/Help/*.hhp
  183. DocProject/Help/Html2
  184. DocProject/Help/html
  185. # Click-Once directory
  186. publish/
  187. # Publish Web Output
  188. *.[Pp]ublish.xml
  189. *.azurePubxml
  190. # TODO: Comment the next line if you want to checkin your web deploy settings
  191. # but database connection strings (with potential passwords) will be unencrypted
  192. *.pubxml
  193. *.publishproj
  194. # NuGet Packages
  195. *.nupkg
  196. # The packages folder can be ignored because of Package Restore
  197. **/packages/*
  198. # except build/, which is used as an MSBuild target.
  199. !**/packages/build/
  200. # Uncomment if necessary however generally it will be regenerated when needed
  201. #!**/packages/repositories.config
  202. # Windows Azure Build Output
  203. csx/
  204. *.build.csdef
  205. # Windows Store app package directory
  206. AppPackages/
  207. # Visual Studio cache files
  208. # files ending in .cache can be ignored
  209. *.[Cc]ache
  210. # but keep track of directories ending in .cache
  211. !*.[Cc]ache/
  212. # Others
  213. ClientBin/
  214. [Ss]tyle[Cc]op.*
  215. ~$*
  216. *~
  217. *.dbmdl
  218. *.dbproj.schemaview
  219. *.pfx
  220. *.publishsettings
  221. node_modules/
  222. orleans.codegen.cs
  223. # RIA/Silverlight projects
  224. Generated_Code/
  225. # Backup & report files from converting an old project file
  226. # to a newer Visual Studio version. Backup files are not needed,
  227. # because we have git ;-)
  228. _UpgradeReport_Files/
  229. Backup*/
  230. UpgradeLog*.XML
  231. UpgradeLog*.htm
  232. # SQL Server files
  233. *.mdf
  234. *.ldf
  235. # Business Intelligence projects
  236. *.rdl.data
  237. *.bim.layout
  238. *.bim_*.settings
  239. # Microsoft Fakes
  240. FakesAssemblies/
  241. # Node.js Tools for Visual Studio
  242. .ntvs_analysis.dat
  243. # Visual Studio 6 build log
  244. *.plg
  245. # Visual Studio 6 workspace options file
  246. *.opt
  247. # Visual Studio LightSwitch build output
  248. **/*.HTMLClient/GeneratedArtifacts
  249. **/*.DesktopClient/GeneratedArtifacts
  250. **/*.DesktopClient/ModelManifest.xml
  251. **/*.Server/GeneratedArtifacts
  252. **/*.Server/ModelManifest.xml
  253. _Pvt_Extensions