From c1b3a2f4afe87fc618eaf4cf21f7d6db9c91566d Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 14 Nov 2012 20:53:26 +0100 Subject: [PATCH] update cheat sheet --- index.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index efd3d0f..11357a1 100644 --- a/index.html +++ b/index.html @@ -46,7 +46,7 @@ }(document, "script", "twitter-wjs");

efficient branching using git-flow by Vincent Driessen

-

translations: en - pt_BR

+

translations: en - Brazilian Portugues

@@ -74,6 +74,7 @@
  • The OSX Client Sourcetree is an excellent git gui and provides git-flow support
  • +
  • - Git-flow is a merge based solution. It doesn't rebase feature branches.
  • ★ ★ ★

    @@ -100,6 +101,7 @@ $ wget -q -O - --no-check-certificate https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | bash +

    You need wget and util-linux to install git-flow.

    @@ -296,9 +298,9 @@

    Like the other git flow commands, a hotfix is started with

    - git flow hotfix start RELEASE + git flow hotfix start VERSION [BASENAME]
    -

    The release argument hereby marks the faulty production release

    +

    The version argument hereby marks the new hotfix release name. Optionally you can specify a basename to start from.

    @@ -309,9 +311,9 @@

    Finish a hotfix

    -

    By finishing a hotfix it gets merged back into develop 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 with the hotfix version.

    - git flow hotfix finish RELEASE + git flow hotfix finish VERSION