缺少用于Gitflow存储库的“git flow clone”命令。
Clone a git repo with support for the gitflow branching model.
git flow clone [-p] <repo> [<dir>]
Everyone who ever clones a git repo that uses the gitflow model will immediately
want to:
Working on a homebrew installation. Otherwise
$ make install
$ git flow clone git@hostname.example.com:projectname
Cloning into 'projectname'...
...
Branch develop set up to track remote branch develop from origin.
Using default branch names.
...
Gitflow repo cloned to projectname
$ cd projectname
$ git branch
* develop
master
Let me know how it’s working for you.