.gitignore 4.7 KB

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