Skip to content

Commit 20d892a

Browse files
committed
added STM32CubeIDE gitignore
1 parent 5445a27 commit 20d892a

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

Global/STM32CubeIDE.gitignore

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# STM32CubeIDE specific files
2+
3+
# Project-specific settings. Ignore it if developers have different preferences.
4+
# However, if you want all team members to use the same code formatting and settings,
5+
# consider including the .settings folder in the repository.
6+
7+
# /.settings/
8+
9+
# Ignore Eclipse-based IDE launch configurations.
10+
# Uncomment if you want each developer to have their own unique debug configurations.
11+
#*.launch
12+
13+
# Ignore any JLink-related files (debug configurations).
14+
# Uncomment if you want each developer to have their own unique debug configurations.
15+
#*.jlink
16+
17+
# Ignore log files generated by the IDE.
18+
# These are not necessary for version control.
19+
*.log
20+
21+
# Ignore VSCode configuration files.
22+
# Useful if some team members use VSCode for development.
23+
# If you want to share VSCode settings, comment out the following line.
24+
.vscode/
25+
26+
# Build files
27+
28+
# Ignore build output directories.
29+
# These are not needed in the repository as they are generated during the build process.
30+
Debug/
31+
Release/
32+
33+
# Ignore common binary and object files generated during compilation.
34+
# They should not be included in the repository as they are build artifacts.
35+
*.elf
36+
*.map
37+
*.bin
38+
*.hex
39+
*.srec
40+
*.lst
41+
*.o
42+
*.d
43+
*.a
44+
*.su
45+
*.crl
46+
47+
#TouchGFX files (in case your project has touchGFX)
48+
TouchGFX/generated
49+
TouchGFX/build
50+
TouchGFX/simulator/msvs/.vs
51+
52+
# Backup files
53+
54+
# Ignore temporary and backup files generated by the operating system and editor.
55+
# These are not needed in the repository.
56+
*.bak

0 commit comments

Comments
 (0)