• 初始化

      1. git flow init
    • 新建feature分支

      1. git flow feature start xxx
    • 提交feature分支 ```git git flow feature publish xxxx

    or

    git push origin feature/xxx

    1. - 结束工作流
    2. ```git
    3. git flow feature finish xxx
    4. // git-flow会自动为我们把分支feature/xyz上的工作合并到develop分支,并把该分支分别从
    5. 本地库和远程库里删掉,然后再把当前分支切换到develop。