laravel-gitscrum
laravel-gitscrum copied to clipboard
Multiple repository working in the same issue
Here at my company, the most common problem with git is that: So many repositories (we work with microsservices), and most of the time the same issue have changes on multiple repositories, and it absolutelly impossible to track all that on a hundred developers company.
So, if we could in some way, create "releases", that are a cluster of product backlogs, that inflict in a lot of repositories, and make it a "closed bundle" that any issue goes to every repository, would be awesome.
I belive that GitScrum must have alternative to multiple repository in issue. We have to think about it.
I think, the repositories must be linked to the user stories, don't they? If I've a User Story that inflict on multiple repositories I can handle with it easily.
Is that possible to create branches on the repos? If yes, we can work with gitflow and create the feature branches at the moment that they are created on the user story, in every repo that is inside that user story.
Example :
UserStory {
repos {
Repo1 {
branches (per feature) {
...
}
}
Repo3 {
branches (per feature) {
...
}
}
Repo2 {
branches (per feature) {
...
}
}
}
}
What you think about that?