質問

I am looking for a way to structure a project that is mainly built around a Qt application on Linux system. what I need is the following:

  • Project
    • .git
    • QT_Application
      • .git
      • src
      • resources
      • bla
    • Drivers
      • .git
      • src
      • libs
    • Utils
      • .git
      • src
      • libs

the Qt application will relatively access all other repositories like ../Utils/libs/xyz. does it make sense to separate it into git submodules and the root folder will be a git repo as well?

How would you realize it?

役に立ちましたか?

解決

If you want to have a main Git repository with Git repositories under it, you HAVE to use submodules. There is no other way to do it.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top