From 249e6d1217177d0dbef453402f42b6a3ee40a178 Mon Sep 17 00:00:00 2001 From: Daniel Kummer Date: Fri, 17 Aug 2012 08:40:14 +0200 Subject: [PATCH] update cheatsheet text and reorder release publish step --- css/style.css | 1 - index.html | 26 ++++++++++++++------------ 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/css/style.css b/css/style.css index 653062b..1baeef2 100644 --- a/css/style.css +++ b/css/style.css @@ -58,7 +58,6 @@ h3 { } p { - width: 95%; margin: 20px auto; text-shadow: 0 2px 1px #fff; color: #222438; diff --git a/index.html b/index.html index 34b7223..c2f2ff9 100644 --- a/index.html +++ b/index.html @@ -149,7 +149,7 @@

Development of new features starting from the 'develop' branch.

Start developing a new feature with

- git-flow feature start MYFEATURE + git flow feature start MYFEATURE

This action creates a new feature branch based on 'develop' and switches to it

@@ -184,7 +184,7 @@
- git-flow feature finish MYFEATURE + git flow feature finish MYFEATURE
@@ -202,7 +202,7 @@

- git-flow feature publish MYFEATURE + git flow feature publish MYFEATURE
@@ -219,7 +219,7 @@

- git-flow feature pull MYFEATURE + git flow feature pull MYFEATURE
@@ -248,6 +248,12 @@

You can optionally supply a [BASE] commit sha-1 hash to start the release from. The commit must be on the 'develop' branch.

+

★ ★ ★

+

It's wise to publish the release branch after creating it to allow release commits by other developers. Do it similar to feature publishing with the command:

+
+ git flow release publish RELEASE +
+

(You can track a remote release with the
git flow release track RELEASE command)

@@ -268,13 +274,6 @@
git flow release finish RELEASE
- -

It's wise to publish a finished release after finishing it. Do it similar to feature publishing with the - command:

-
- git flow release publish RELEASE -
-

(You can track a remote release with the
git flow release track RELEASE command)

@@ -309,7 +308,10 @@

Finish a hotfix

-

By finishing a hotfix it gets merged back into develp and master. Additionally the master merge ist tagged.

+

By finishing a hotfix it gets merged back into develop and master. Additionally the master merge ist tagged.

+
+ git flow hotfix finish RELEASE +