git-slave

Best practices for multiple git repositories

折月煮酒 提交于 2019-12-21 04:43:07
问题 I have around 20 different repositories. Many are independent and compile as libraries but some others have dependencies among them. Dependency resolution and branching is complicated. Suppose that I have a super project that only aggregates all other repositories. It is used exclusively to run tests -- no real development goes here. /superproject [master, HEAD] /a [master, HEAD] /b [master, HEAD] /c [master, HEAD] /... Now, to develop specific features or fixes for each one ( a ), especially

What are the options when working with Git submodules from which commits are made?

旧时模样 提交于 2019-12-12 08:48:53
问题 At work, we're working on a dozen Java OSGi bundles, each of which has its own git repository. All bundles will be, in the long run, pretty independent from each other, which justifies the individual repositories — although right now we're still often modifying several of them at the same time. When we make a product release (which consists of all bundles), a new branch is created in each bundle, which is a bit of a pain. We were thus thinking about using git-submodule to ease the pain

Best practices for multiple git repositories

风流意气都作罢 提交于 2019-12-03 13:19:22
I have around 20 different repositories. Many are independent and compile as libraries but some others have dependencies among them. Dependency resolution and branching is complicated. Suppose that I have a super project that only aggregates all other repositories. It is used exclusively to run tests -- no real development goes here. /superproject [master, HEAD] /a [master, HEAD] /b [master, HEAD] /c [master, HEAD] /... Now, to develop specific features or fixes for each one ( a ), especially one of those that require specific versions of projects to compile or run ( b v2.0 and c 3.0 ) I have

Alternatives to Git Submodules?

自闭症网瘾萝莉.ら 提交于 2019-11-27 03:00:17
I feel that using Git submodules is somehow troublesome for my development workflow. I've heard about Git subtree and Gitslave. Are there more tools out there for multiple repository projects and how do they compare ? Can these tools run on Windows ? Which is best for you depends on your needs, desires, and workflow. They are in some senses semi-isomorphic, it is just some are a lot easier to use than others for specific tasks. gitslave is useful when you control and develop on the subprojects at more of less the same time as the superproject, and furthermore when you typically want to tag,

Alternatives to Git Submodules?

二次信任 提交于 2019-11-26 10:19:25
问题 I feel that using Git submodules is somehow troublesome for my development workflow. I\'ve heard about Git subtree and Gitslave. Are there more tools out there for multiple repository projects and how do they compare ? Can these tools run on Windows ? 回答1: Which is best for you depends on your needs, desires, and workflow. They are in some senses semi-isomorphic, it is just some are a lot easier to use than others for specific tasks. gitslave is useful when you control and develop on the