I want a several different versions of my code, at different stages of its development life-cycle, to be version controlled and live on the web concurrently at all times. Versions are typically named development, staging and live and are structured as in the following tree.
Sitename
|--Development
|--Live
`--Staging
- Is it better to create three separate repositories or one repository with three branches permanently checked out?
- What are the respective merits and demerits of each workflow?
- Being new to Git, how do I implement the preferred workflow?
Addendum
I'd prefer to create a single repository but that would mean creating the repository under Sitename and having three working directories within it, however my understanding is that Git does not support nested working directories. I'm aware of a contributed solution called git-new-workdir but have read that new users could suffer more consequences than benefits using this workflow so I'm interested in alternatives.