Reputation: 735
I have 3 git repositories for a project. I want to create a release label. is it possible to tag multiple git repos together to specify a particular release?
Upvotes: 5
Views: 4288
Reputation: 51
You might be able to achieve this using git submodules.
The master repo can otherwise be empty of files.
More details here: https://git-scm.com/book/en/v2/Git-Tools-Submodules
Upvotes: 3