Commit bb1becd6 authored by Vincent Driessen's avatar Vincent Driessen

Merge pull request #178 from lorin/feature/docs

Documented init -d flag and feature publish/pull
parents ee272106 905cfb1e
...@@ -83,13 +83,15 @@ in a Github fork, of course. ...@@ -83,13 +83,15 @@ in a Github fork, of course.
To initialize a new repo with the basic branch structure, use: To initialize a new repo with the basic branch structure, use:
git flow init git flow init [-d]
This will then interactively prompt you with some questions on which branches This will then interactively prompt you with some questions on which branches
you would like to use as development and production branches, and how you you would like to use as development and production branches, and how you
would like your prefixes be named. You may simply press Return on any of would like your prefixes be named. You may simply press Return on any of
those questions to accept the (sane) default suggestions. those questions to accept the (sane) default suggestions.
The ``-d`` flag will accept all defaults.
### Creating feature/release/hotfix/support branches ### Creating feature/release/hotfix/support branches
...@@ -101,6 +103,11 @@ those questions to accept the (sane) default suggestions. ...@@ -101,6 +103,11 @@ those questions to accept the (sane) default suggestions.
For feature branches, the `<base>` arg must be a commit on `develop`. For feature branches, the `<base>` arg must be a commit on `develop`.
* To push/pull a feature branch to the remote repository, use:
git flow feature publish <name>
git flow feature pull <remote> <name>
* To list/start/finish release branches, use: * To list/start/finish release branches, use:
git flow release git flow release
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment