windows環境にて、git bash
でgit-flow
を使用する設定を行った。
1.git-flowをクローン
git bash
で以下のように操作。
$ git clone http://github.com/nvie/gitflow.git
2..gitmodules
の編集
クローンしてきたファイルを以下のように修正。
gitflow/.gitmodules
[submodule "shFlags"]
path = shFlags
url = http://github.com/nvie/shFlags.git
3.サブモジュールを取得
gitflow直下に移動して、以下のように操作。
$ cd gitflow
$ git submodule init
$ git submodule update
4.コマンドプロンプトでgit-flowのインストーラを実行
以下全て、コマンドプロンプト
での操作。
コマンドプロンプトを管理者として実行
したのちクローンしてきた
以下の例のようにgitflowディレクトリに移動して以下のコマンドを実行。
C:\Users\user\Desktop\gitflow>contrib\msysgit-install.cmd "C:\Program Files (x86)\Git"
以上でgit bash
でgit-flow
を使用することができる。