Skip to content

Commit

Permalink
docs: update gitflow commands description
Browse files Browse the repository at this point in the history
  • Loading branch information
joseluisq committed Jun 27, 2019
1 parent 1ac1b1e commit 416a979
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ move -u feature/new_remote_branch

Creates a new feature ([Gitflow](https://github.com/nvie/gitflow)) branch from current branch.

__Note:__ Your new branch will always be lowercase without special or whitespaces (underscores instead).
__Note:__ Your new branch will always be lowercase without special characters or whitespaces (underscores instead).

```sh
feature feat1
Expand All @@ -235,7 +235,7 @@ feature "This is my New FEATURE Branch"

Creates a new hotfix ([Gitflow](https://github.com/nvie/gitflow)) branch from current branch.

__Note:__ Your new branch will always be lowercase without special or whitespaces (underscores instead).
__Note:__ Your new branch will always be lowercase without special characters or whitespaces (underscores instead).

```sh
hotfix fix1
Expand All @@ -248,7 +248,7 @@ hotfix "This is my New FIX Branch"

Creates a new bugfix ([Gitflow](https://github.com/nvie/gitflow)) branch from current branch.

__Note:__ Your new branch will always be lowercase without special or whitespaces (underscores instead).
__Note:__ Your new branch will always be lowercase without special characters or whitespaces (underscores instead).

```sh
bugfix fix1
Expand All @@ -261,7 +261,7 @@ bugfix "This is my New bugFIX Branch"

Creates a new release ([Gitflow](https://github.com/nvie/gitflow)) branch from current branch.

__Note:__ Your new branch will always be lowercase without special or whitespaces (underscores instead).
__Note:__ Your new branch will always be lowercase without special characters or whitespaces (underscores instead).

```sh
release fix1
Expand Down

0 comments on commit 416a979

Please sign in to comment.