From 5a586336158de625ed9bc9541465b5643f9805d5 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Tue, 20 Dec 2011 10:17:54 -0500 Subject: [PATCH] Documented init -d flag and publish/pull Documented the -d flag for init command Added docs for feature push and feature pull --- README.mdown | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.mdown b/README.mdown index 70d944d99..dc4e1046f 100644 --- a/README.mdown +++ b/README.mdown @@ -83,13 +83,15 @@ in a Github fork, of course. 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 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 those questions to accept the (sane) default suggestions. +The ``-d`` flag will accept all defaults. + ### Creating feature/release/hotfix/support branches @@ -101,6 +103,11 @@ those questions to accept the (sane) default suggestions. For feature branches, the `` arg must be a commit on `develop`. +* To push/pull a feature branch to the remote repository, use: + + git flow feature publish + git flow feature pull + * To list/start/finish release branches, use: git flow release