Tagged Questions
2
votes
3answers
100 views
Using git for plugin development
Similar questions to this have already been asked, although they're not exactly what I'm trying to do.
At first I thought I needed a git submodule, then to set up a superproject and then a sub tree ...
1
vote
1answer
16 views
Why does git say a sub project is dirty if I do not have any sub-modules in my repository?
Its a new git repository and all I've done is added a whole lot of code to it. However, it tells me:
+Subproject commit 62402f4a7e3aa34a5f22532c8c699836b7ae4967-dirty
Based on this question, this ...
1
vote
1answer
645 views
Another use-case of splitting a git project into several subprojects
I have split my project into several subprojects
But all have a common part (directory with cmake scripts).
Moreover some subproject need to include other subprojects (libraries).
I would prefer to ...