gitscrum-team / laravel-gitscrum

GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.
https://site.gitscrum.com
MIT License
2.89k stars 728 forks source link

Multiple repository working in the same issue #64

Open victorfcm opened 7 years ago

victorfcm commented 7 years ago

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.

renatomarinho commented 7 years ago

I belive that GitScrum must have alternative to multiple repository in issue. We have to think about it.

victorfcm commented 7 years ago

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?