Skip to content

Commit

Permalink
fix with markdown syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
gelosie committed Mar 14, 2013
1 parent b4bcdff commit 4c8c67d
Showing 1 changed file with 29 additions and 11 deletions.
40 changes: 29 additions & 11 deletions README.md
Expand Up @@ -6,26 +6,35 @@ A cheatsheet on the usage of git flow, visit http://danielkummer.github.com/git-
GIT FLOW
========

Git extensions to provide high-level repository operations for Vincent
Driessen's branching model. — Read more:
http://nvie.com/posts/a-successful-git-branching-model/
Git extensions to provide high-level repository operations for Vincent Driessen's branching model. [Read more](http://nvie.com/posts/a-successful-git-branching-model/)


INIT:

```
$ git flow init
```

#### TRACK DEVELOP REMOTELY ON GITHUB:

TRACK DEVELOP REMOTELY ON GITHUB:

```
$ git push origin develop
```

**FEATURES:**

FEATURES:
Use to develop new features starting from the develop branch. Merge back into
develop branch waiting for a reasonable amount of features to be there before
declaring it a release.

```
$ git flow feature
$ git flow feature start <name>
$ git flow feature finish <name>
```



```
usage: git flow feature [list] [-v]
git flow feature start [-F] <name> [<base>]
git flow feature finish [-rFk] <name|nameprefix>
Expand All @@ -35,33 +44,42 @@ usage: git flow feature [list] [-v]
git flow feature rebase [-i] [<name|nameprefix>]
git flow feature checkout [<name|nameprefix>]
git flow feature pull <remote> [<name>]
```

**RELEASES:**

RELEASES:
Use to group together latest development (features) add a few finishing touches
if necessary and send to production. All last changes will merge back to master
and develop so new features will start from current release.

```
$ git flow release
$ git flow release start <release> [<base>]
$ git flow release finish <release>

```
```
usage: git flow release [list] [-v]
git flow release start [-F] <version>
git flow release finish [-Fsumpk] <version>
git flow release publish <name>
git flow release track <name>
```

**HOTFIXES:**

HOTFIXES:
Similar to releases but the hotfix branch starts off master to avoid unvoluntary
send to production of unwanted features that my be present in branches. The
quick fix must be used when an important bug arises in production which must be
fixed and can't wait for other features to be ready. It merges back to master
and develop.

```
$ git flow hotfix
$ git flow hotfix start <release> [<base>]
$ git flow hotfix finish <release>

```
```
usage: git flow hotfix [list] [-v]
git flow hotfix start [-F] <version> [<base>]
git flow hotfix finish [-Fsumpk] <version>
```

0 comments on commit 4c8c67d

Please sign in to comment.