Hello Daniel,
Thanks a lot for your response.
I read the article, but it does not seem to resolve my issue.
With Team->Share project, the whole project tree is exported to the repo.
I can sure ignore all generated files and keep it clean, but still the repo will contain all SDK libraries, like the folders 'drivers', 'freertos', 'lwip' etc, and my application files inside 'source' folder
I would like to somehow exclude all the SDK components and only have my application files and a link to any SDK resources,so that the user can import my project to their mcuxpresso ide, add the SDK and continue working on the project's code.
For example, let's see the case of the lwip ping example.
We can see it in this NXP's repo:
https://github.com/nxp-mcuxpresso/mcux-sdk-examples/tree/main/evkbmimxrt1060/lwip_examples/lwip_ping...
It only contains the application specific files, like freertos and lwip configuration, board pin mux and the application logic.
If I had imported this example in the IDE, using the 'Import SDK examples' option, I would have ended up with the project directory seen in the image attached.
And this whole tree would inevitably end up in my repository.
But I would like to create a repo with my project that looks like the lwip ping example in NXP's repo and only contains my application files and not the whole SDK resources.
Is there a way to do that?
Thank you