Git flow is an extension set for Git that is based on the branching model of Vincent Driessen, which can be used to simplify the release process of code.
This article describes how to install git flow for msysgit.
Download Getopt.exe
Getopt.exe Download Link: http://downloads.sourceforge.net/gnuwin32/util-linux-ng-2.14.1-bin.zip
Unzip, go to the bin directory, copy the Getopt.exe file into your git installation directory, for example,D:\Program Files (x86)\Git\bin
Download Libintl3.dll
Libintl3.dll Download Link: http://gnuwin32.sourceforge.net/downlinks/libintl-bin-zip.php
Unzip, go to the bin directory, copy the Libintl3.dll file to your git installation directory.
Download Libiconv2.dll
Libiconv2.dll Download Link: http://gnuwin32.sourceforge.net/downlinks/libiconv-bin-zip.php
Unzip, go to the bin directory, copy the Libiconv2.dll file to your git installation directory.
Get the code for GIT flow
Open git bash and enter the following command:
git clone-–recursive git://github.com/nvie/gitflow.git
Install script to run git flow
Open the CMD for Windows (you may need Administrator privileges), enter the Git flow code directory above, and type the following command:
CD Gitflow
CD contrib
msysgit-install.cmd [git installation directory]
For example
Msysgit-install.cmd "D:\Program Files (x86) \git"
Wait patiently for the execution to finish.
Verifying the installation
Open git bash, enter
git flow
If you see the following
Indicates that the installation was successful.
Reprint Address: Http://blog.csdn.net/lihao21
How to install Gitflow under Windows