Is it possible to manage multiple repositories coherently?

后端 未结 6 760
渐次进展
渐次进展 2020-12-10 03:17

I have a collection of git repositories that are independently versioned but related to one another. For example, when adding a feature I may have to add functionality to a

6条回答
  •  Happy的楠姐
    2020-12-10 03:54

    Also, take a look at: http://fabioz.github.io/mu-repo/ -- it's a tool such as mr and repo as I couldn't get those to work as I needed :)

    Some notes:

    • it's done in Python (so, works well in any OS where Python runs: Linux, Win, Mac...)

    • besides running common git operations against many repos at once also provides workflows to:

      • clone multiple repositories
      • open urls from repos (so, it's possible to do create pull requests for multiple repos at once).
      • diff changes on multiple repos at once with winmerge or meld
      • execute non-git commands

提交回复
热议问题