nvie / gitflow

Git extensions to provide high-level repository operations for Vincent Driessen's branching model.
http://nvie.com/posts/a-successful-git-branching-model/
Other
26.63k stars 2.66k forks source link

Can not start branch from current commit #427

Open KES777 opened 9 years ago

KES777 commented 9 years ago

I want to start branch from some commit.

  1. git checkout 15aab26
  2. git flow feature start name

and branch is started from develop:HEAD. Please implement option to start branch from current point

This is usefull for case when I start feature and in developing process I need to start second feature from this one. This still is not merged to develop because of incomplete

KES777 commented 9 years ago

Another problem, when local develop branch is behind origin. In this case I also can not start branch:

git flow feature start implement_install_prefix
Branches 'develop' and 'origin/develop' have diverged.
And branch 'develop' may be fast-forwarded.