Skip to content

Commit 146e85f

Browse files
Added .gitignore
1 parent b891b23 commit 146e85f

File tree

1 file changed

+301
-0
lines changed

1 file changed

+301
-0
lines changed

.gitignore

+301
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,301 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### ROS template
3+
devel/
4+
logs/
5+
build/
6+
bin/
7+
lib/
8+
msg_gen/
9+
srv_gen/
10+
msg/*Action.msg
11+
msg/*ActionFeedback.msg
12+
msg/*ActionGoal.msg
13+
msg/*ActionResult.msg
14+
msg/*Feedback.msg
15+
msg/*Goal.msg
16+
msg/*Result.msg
17+
msg/_*.py
18+
build_isolated/
19+
devel_isolated/
20+
21+
# Generated by dynamic reconfigure
22+
*.cfgc
23+
/cfg/cpp/
24+
/cfg/*.py
25+
26+
# Ignore generated docs
27+
*.dox
28+
*.wikidoc
29+
30+
# eclipse stuff
31+
.project
32+
.cproject
33+
34+
# qcreator stuff
35+
CMakeLists.txt.user
36+
37+
srv/_*.py
38+
*.pcd
39+
*.pyc
40+
qtcreator-*
41+
*.user
42+
43+
/planning/cfg
44+
/planning/docs
45+
/planning/src
46+
47+
*~
48+
49+
# Emacs
50+
.#*
51+
52+
# Catkin custom files
53+
CATKIN_IGNORE
54+
55+
### JetBrains template
56+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
57+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
58+
59+
# User-specific stuff
60+
.idea/**/workspace.xml
61+
.idea/**/tasks.xml
62+
.idea/**/usage.statistics.xml
63+
.idea/**/dictionaries
64+
.idea/**/shelf
65+
66+
# Generated files
67+
.idea/**/contentModel.xml
68+
69+
# Sensitive or high-churn files
70+
.idea/**/dataSources/
71+
.idea/**/dataSources.ids
72+
.idea/**/dataSources.local.xml
73+
.idea/**/sqlDataSources.xml
74+
.idea/**/dynamic.xml
75+
.idea/**/uiDesigner.xml
76+
.idea/**/dbnavigator.xml
77+
78+
# Gradle
79+
.idea/**/gradle.xml
80+
.idea/**/libraries
81+
82+
# Gradle and Maven with auto-import
83+
# When using Gradle or Maven with auto-import, you should exclude module files,
84+
# since they will be recreated, and may cause churn. Uncomment if using
85+
# auto-import.
86+
# .idea/artifacts
87+
# .idea/compiler.xml
88+
# .idea/jarRepositories.xml
89+
# .idea/modules.xml
90+
# .idea/*.iml
91+
# .idea/modules
92+
# *.iml
93+
# *.ipr
94+
95+
# CMake
96+
cmake-build-*/
97+
98+
# Mongo Explorer plugin
99+
.idea/**/mongoSettings.xml
100+
101+
# File-based project format
102+
*.iws
103+
104+
# IntelliJ
105+
out/
106+
107+
# mpeltonen/sbt-idea plugin
108+
.idea_modules/
109+
110+
# JIRA plugin
111+
atlassian-ide-plugin.xml
112+
113+
# Cursive Clojure plugin
114+
.idea/replstate.xml
115+
116+
# Crashlytics plugin (for Android Studio and IntelliJ)
117+
com_crashlytics_export_strings.xml
118+
crashlytics.properties
119+
crashlytics-build.properties
120+
fabric.properties
121+
122+
# Editor-based Rest Client
123+
.idea/httpRequests
124+
125+
# Android studio 3.1+ serialized cache file
126+
.idea/caches/build_file_checksums.ser
127+
128+
### C++ template
129+
# Prerequisites
130+
*.d
131+
132+
# Compiled Object files
133+
*.slo
134+
*.lo
135+
*.o
136+
*.obj
137+
138+
# Precompiled Headers
139+
*.gch
140+
*.pch
141+
142+
# Compiled Dynamic libraries
143+
*.so
144+
*.dylib
145+
*.dll
146+
147+
# Fortran module files
148+
*.mod
149+
*.smod
150+
151+
# Compiled Static libraries
152+
*.lai
153+
*.la
154+
*.a
155+
*.lib
156+
157+
# Executables
158+
*.exe
159+
*.out
160+
*.app
161+
162+
### Python template
163+
# Byte-compiled / optimized / DLL files
164+
__pycache__/
165+
*.py[cod]
166+
*$py.class
167+
168+
# C extensions
169+
*.so
170+
171+
# Distribution / packaging
172+
.Python
173+
build/
174+
develop-eggs/
175+
dist/
176+
downloads/
177+
eggs/
178+
.eggs/
179+
lib/
180+
lib64/
181+
parts/
182+
sdist/
183+
var/
184+
wheels/
185+
share/python-wheels/
186+
*.egg-info/
187+
.installed.cfg
188+
*.egg
189+
MANIFEST
190+
191+
# PyInstaller
192+
# Usually these files are written by a python script from a template
193+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
194+
*.manifest
195+
*.spec
196+
197+
# Installer logs
198+
pip-log.txt
199+
pip-delete-this-directory.txt
200+
201+
# Unit test / coverage reports
202+
htmlcov/
203+
.tox/
204+
.nox/
205+
.coverage
206+
.coverage.*
207+
.cache
208+
nosetests.xml
209+
coverage.xml
210+
*.cover
211+
*.py,cover
212+
.hypothesis/
213+
.pytest_cache/
214+
cover/
215+
216+
# Translations
217+
*.mo
218+
*.pot
219+
220+
# Django stuff:
221+
*.log
222+
local_settings.py
223+
db.sqlite3
224+
db.sqlite3-journal
225+
226+
# Flask stuff:
227+
instance/
228+
.webassets-cache
229+
230+
# Scrapy stuff:
231+
.scrapy
232+
233+
# Sphinx documentation
234+
docs/_build/
235+
236+
# PyBuilder
237+
.pybuilder/
238+
target/
239+
240+
# Jupyter Notebook
241+
.ipynb_checkpoints
242+
243+
# IPython
244+
profile_default/
245+
ipython_config.py
246+
247+
# pyenv
248+
# For a library or package, you might want to ignore these files since the code is
249+
# intended to run in multiple environments; otherwise, check them in:
250+
# .python-version
251+
252+
# pipenv
253+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
254+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
255+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
256+
# install all needed dependencies.
257+
#Pipfile.lock
258+
259+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
260+
__pypackages__/
261+
262+
# Celery stuff
263+
celerybeat-schedule
264+
celerybeat.pid
265+
266+
# SageMath parsed files
267+
*.sage.py
268+
269+
# Environments
270+
.env
271+
.venv
272+
env/
273+
venv/
274+
ENV/
275+
env.bak/
276+
venv.bak/
277+
278+
# Spyder project settings
279+
.spyderproject
280+
.spyproject
281+
282+
# Rope project settings
283+
.ropeproject
284+
285+
# mkdocs documentation
286+
/site
287+
288+
# mypy
289+
.mypy_cache/
290+
.dmypy.json
291+
dmypy.json
292+
293+
# Pyre type checker
294+
.pyre/
295+
296+
# pytype static type analyzer
297+
.pytype/
298+
299+
# Cython debug symbols
300+
cython_debug/
301+

0 commit comments

Comments
 (0)