Skip to content

Commit 8fea4dc

Browse files
authored
Merge pull request #4513 from yahyayozo/STM32CubeIDE-gitignore
added STM32CubeIDE gitignore
2 parents 10b26ce + c9ae3d3 commit 8fea4dc

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

Global/STM32CubeIDE.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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+
# Build files
22+
23+
# Ignore build output directories.
24+
# These are not needed in the repository as they are generated during the build process.
25+
Debug/
26+
Release/
27+
28+
# Ignore common binary and object files generated during compilation.
29+
# They should not be included in the repository as they are build artifacts.
30+
*.elf
31+
*.map
32+
*.bin
33+
*.hex
34+
*.srec
35+
*.lst
36+
*.o
37+
*.d
38+
*.a
39+
*.su
40+
*.crl
41+
42+
#TouchGFX files (in case your project has touchGFX)
43+
TouchGFX/generated
44+
TouchGFX/build
45+
TouchGFX/simulator/msvs/.vs
46+
47+
# Backup files
48+
49+
# Ignore temporary and backup files generated by the operating system and editor.
50+
# These are not needed in the repository.
51+
*.bak

0 commit comments

Comments
 (0)