Reputation: 41
I want to update multiple repositories with files based on a template repository. Is there any app that lets me do it on git?
Upvotes: 1
Views: 142
Reputation: 1327204
Not unless your template repository can be considered a subfolder of your other repositories.
In that case, said other repositories can declare the template one as a submodule, and any git submodule update --remote
in any of your other repositories would update the template folder as well.
Upvotes: 0