From 20d892ae4f3ad2318ab8e9c7be944ffe2dc5b0f9 Mon Sep 17 00:00:00 2001 From: yahyayozo Date: Fri, 27 Sep 2024 21:38:22 +0100 Subject: [PATCH 1/2] added STM32CubeIDE gitignore --- Global/STM32CubeIDE.gitignore | 56 +++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 Global/STM32CubeIDE.gitignore diff --git a/Global/STM32CubeIDE.gitignore b/Global/STM32CubeIDE.gitignore new file mode 100644 index 00000000..22f2bc8f --- /dev/null +++ b/Global/STM32CubeIDE.gitignore @@ -0,0 +1,56 @@ +# STM32CubeIDE specific files + +# Project-specific settings. Ignore it if developers have different preferences. +# However, if you want all team members to use the same code formatting and settings, +# consider including the .settings folder in the repository. + +# /.settings/ + +# Ignore Eclipse-based IDE launch configurations. +# Uncomment if you want each developer to have their own unique debug configurations. +#*.launch + +# Ignore any JLink-related files (debug configurations). +# Uncomment if you want each developer to have their own unique debug configurations. +#*.jlink + +# Ignore log files generated by the IDE. +# These are not necessary for version control. +*.log + +# Ignore VSCode configuration files. +# Useful if some team members use VSCode for development. +# If you want to share VSCode settings, comment out the following line. +.vscode/ + +# Build files + +# Ignore build output directories. +# These are not needed in the repository as they are generated during the build process. +Debug/ +Release/ + +# Ignore common binary and object files generated during compilation. +# They should not be included in the repository as they are build artifacts. +*.elf +*.map +*.bin +*.hex +*.srec +*.lst +*.o +*.d +*.a +*.su +*.crl + +#TouchGFX files (in case your project has touchGFX) +TouchGFX/generated +TouchGFX/build +TouchGFX/simulator/msvs/.vs + +# Backup files + +# Ignore temporary and backup files generated by the operating system and editor. +# These are not needed in the repository. +*.bak \ No newline at end of file From c9ae3d337ac1699d50589931b1923ecd431c6d59 Mon Sep 17 00:00:00 2001 From: YahyaAouledAmer Date: Sat, 6 Sep 2025 17:33:39 +0100 Subject: [PATCH 2/2] Remove .vscode rule --- Global/STM32CubeIDE.gitignore | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Global/STM32CubeIDE.gitignore b/Global/STM32CubeIDE.gitignore index 22f2bc8f..fc7ee5c7 100644 --- a/Global/STM32CubeIDE.gitignore +++ b/Global/STM32CubeIDE.gitignore @@ -18,11 +18,6 @@ # These are not necessary for version control. *.log -# Ignore VSCode configuration files. -# Useful if some team members use VSCode for development. -# If you want to share VSCode settings, comment out the following line. -.vscode/ - # Build files # Ignore build output directories. @@ -53,4 +48,4 @@ TouchGFX/simulator/msvs/.vs # Ignore temporary and backup files generated by the operating system and editor. # These are not needed in the repository. -*.bak \ No newline at end of file +*.bak