Skip to content

Commit b61a7a5

Browse files
author
YH.Wang
committed
1.0.9 Update gitignore and issue_templates.
1 parent c96192e commit b61a7a5

File tree

2 files changed

+132
-0
lines changed

2 files changed

+132
-0
lines changed

.github/ISSUE_TEMPLATE/issue.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
name: "\U0001F41B Issue Report"
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: TechmanRobotIncOwner
7+
8+
---
9+
10+
<!---
11+
This issue template is suitable for bug report templates that remind users to provide a clear and detailed description of the steps required to reproduce the bug.
12+
This should include any specific inputs, expected outputs, and observed outputs.
13+
Users are kindly requested to try their best to eliminate problems with the development environment setup and basic connections.
14+
--->
15+
16+
:dove: :dove: :dove: :dove: :dove: :dove: **Thanks for taking the time to fill out this issue report!** :dove: :dove: :dove: :dove: :dove: :dove:
17+
18+
<div> </div>
19+
20+
**Summarize**
21+
A clear and concise description of what the bug behavior is.
22+
23+
**Contact details**
24+
How can we get in touch with you if we need more info?
25+
26+
**TM App Version**
27+
What version of our software are you running?
28+
- FW name and the version committed on GitHub [e.g. tmr_ros2 foxy 1.12.7]
29+
30+
**To Reproduce**
31+
Steps to reproduce the bug:
32+
1. Go to '...'
33+
2. Click on '....'
34+
3. Scroll down to '....'
35+
4. See error
36+
37+
**Reproducibility**
38+
Describe how frequently the bug occurs.
39+
40+
**Expected behavior/code**
41+
A clear and concise description of what you expected to happen (or code).
42+
43+
**Relevant logs and screenshots**
44+
Insert any relevant logs - please use code blocks (```) to format console output, logs, and code as it's tough to read otherwise.
45+
46+
**Environment**
47+
- Robot Device: [e.g. real TM12 or virtual TM12 Robot]
48+
- Your OS and Version: [e.g. Ubuntu 20.04]
49+
- ROS insatll: [e.g. ROS Foxy]
50+
- MoveIt install: [e.g. MoveIt 2.2.3-1 or none]
51+
- ...
52+
53+
**Additional context**
54+
If applicable, add screenshots and any other context to help explain your problem.
55+
56+
<!--- **Possible Solution** -->
57+
<!--- Only if you have suggestions on a fix for the bug -->

.gitignore

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# ROS, CMake files
2+
build/
3+
CMakeCache.txt
4+
CMakeFiles/
5+
Makefile
6+
cmake_install.cmake
7+
install_manifest.txt
8+
cmake-build-*/
9+
install/
10+
log/
11+
devel/
12+
logs/
13+
CATKIN_IGNORE
14+
15+
# OS files
16+
.DS_Store
17+
Thumbs.db
18+
19+
# Linux files
20+
*~
21+
.fuse_hidden*
22+
.directory
23+
.Trash-*
24+
.nfs*
25+
26+
# Python VS files
27+
*.bin
28+
.vs
29+
.vscode/
30+
*.ipch
31+
.idea
32+
__pycache__/
33+
*.pyc
34+
*.cpython-37.pyc
35+
36+
# Compiled or Executables
37+
*.com
38+
*.class
39+
*.dll
40+
*.exe
41+
*.o
42+
*.so
43+
*.lai
44+
*.la
45+
*.a
46+
*.lib
47+
*.out
48+
*.app
49+
50+
# Temp, autosave files
51+
*.bak
52+
*.tmp
53+
*.gho
54+
*.ori
55+
*.orig
56+
.~lock.*#
57+
*.asv
58+
*.autosave
59+
60+
# Logs and databases
61+
*.log
62+
*.sqlite
63+
64+
# Pack files
65+
*.7z
66+
*.dmg
67+
*.gz
68+
*.iso
69+
*.rar
70+
*.tar
71+
*.zip
72+
73+
# Others
74+
Backup*/
75+
*bom.json

0 commit comments

Comments
 (0)