Clone the git-flow sources from GitHub:
$ git clone --recursive git://github.com/nvie/gitflow.git $ cd gitflow 说明: 然后执行以上命令,下载源码,并且cd到gitflow目录下。 Step3:Run the msysgit-install script from a command-line prompt (you may have to run it with "Full Administrator" rights if you installed msysgit with its installer, and ensure you're running from a Windows command prompt, not MINGW):
C:\gitflow> contrib\msysgit-install.cmd 说明: 然后使用cmd命令,cd到刚下载下来的gitfow的contrib目录下,执行msysgit-install.cmd命令,注意要管理员权限,(报错后悔有提示,后面跟上git的安装路径名) Step4:In Git bash create a symbolic link for git-flow so that you can actually use the $ git flowcommand from any location.
$ ln -s /C/gitflow/git-flow git-flow 说明:把上面的/C/gitflow/路径替换成真实的下载下来的gitflow的路径 至此已经完成安装, 你可以使用git flow的命令试试啦,如下就是正常的init信息 (git使用文档:http://danielkummer.github.io/git-flow-cheatsheet/index.zh_CN.html) $ git flow init Which branch should be used for bringing forth production releases? - 3.24banner - dayloan - dev - fix1.5.0 - fix1.5.0_5 - fix_issue_74 - master - release1.2Branch name for production releases: [master]Which branch should be used for integration of the "next release"? - 3.24banner - dayloan - dev - fix1.5.0 - fix1.5.0_5 - fix_issue_74 - release1.2Branch name for "next release" development: [master] devHow to name your supporting branch prefixes?Feature branches? [feature/]Release branches? [release/]Hotfix branches? [hotfix/]Support branches? [support/]Version tag prefix? []
转载于:https://www.cnblogs.com/chenyao/p/4496739.html