Reputation: 1863
Let's say the app is written for 3 environments. For example a theme made for WP, Drupal and Joomla. So there are 3 versions of the theme.
Do I have to create a repo for each of them? Because I don't like that idea.
Does Github provide a way to put them all in one repo?
Upvotes: 0
Views: 159
Reputation: 1736
You can put all your files in one repo. If you have three separate folders for each version in your main repo, then you can have three versions while having one repo.
Upvotes: 1
Reputation: 534925
There are no rules about the structure of a repository. Your repo could consist of three folders, one for each version of the app.
Or you could keep them as different branches.
Upvotes: 1