Elfy
Elfy

Reputation: 1863

Creating multiple versions of the same app

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

Answers (2)

shieldgenerator7
shieldgenerator7

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

matt
matt

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

Related Questions