On 10/26/12 1:14 PM, Shawn Wells wrote:
As we're now at a point where the project is about to submit "Informal Draft" content to DISA, it may be a good time to clean up our git branching/tagging model (err.. create one).

My thoughts:
(1) For every project within SSG, create a unique branch. Currently this would set us up as:

MASTER
|--- JBossEAP5
|--- RHEL6

(2) Each project is responsible for their own release tags.
MASTER
|--- JBossEAP5
|--- RHEL6
|          |--- InformalDraft


Comments?

Talked this over with Jeff on the phone, decided to proceed. We now have two unique branches in the code:

MASTER
|--- JBoss EAP5
|--- RHEL6

We did this to support additional incoming content, such as for RHEL7 and JBossEAP6. This change also allows each project to create their own release tags, without effecting other content developers.

The recommended way to clone moving forward will be to checkout only the project you want to play with. For example:

To checkout $branchName with commit access (if you have it):
git clone -b $branchName ssh://<your_fedora_username>@git.fedorahosted.org/git/scap-security-guide.git

To checkout $branchName  without commit access:
git clone -b $branchName http://git.fedorahosted.org/git/scap-security-guide.git

Options for $branchName:
JBossEAP5
RHEL6