Gitignore in CubeIDE. What files do you like to ignore?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-12-11 7:30 AM
Which files/folders to you like to put in .gitignore ?
I tend to put: Debug and Release because I'm happy to rebuild on new platforms.
But, I also put Drivers and Middlewares since they can also be sourced from ST repos.
I'm wondering also how people manage .project and .cproject since I've lately had some issues with cross-platform development between different developers.
- Labels:
-
STM32CubeIDE
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-01-19 11:20 AM
Does anyone else recommend to version these Folders: Middleware and Drivers?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-01-19 12:10 PM
@eduardo_reis Of course, because these are part of your firmware. You can check in the copies in your project tree, or, better, make a private fork of the ST repository from github, or parts of it (CMSIS, Middlewares and HAL drivers are now separate sub-modules in the "Cube packages", you can clone only these sub-repos).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-01-19 1:59 PM
Do you mean, having these as `gitsubmodules` in my repository? Don't those folders get downloaded and moved into my project when configuring it from the `.ioc` file?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-01-19 3:55 PM - edited ‎2024-01-19 3:55 PM
Yes, this may be a good idea to have these components as git submodules. When you let CubeIDE/MX copy these files into generated project, this has certain benefits (self-containing tree structure, simpler project) but IMHO makes harder tracking original versions of the components. There are many variants. All I'd like to say - this stuff is part of the program, so it should be checked in or tracked. Same about the toolchain and C library (newlib): part of the project, should be tracked.
