I am trying to get gitflow running on Windows using the instructions here: https://github.com/nvie/gitflow (I am using Windows Server 2003 SP2 64 bit)
I have tried both Cygwin and msysgit.
With Cygwin, calling wget just returns nothing.
With msysgit I get quite a bit further, but when I try and run git flow init I get the following error:
C:\Program Files (x86)\Git/libexec/git-core/git-flow: line 45: dirname: command not found
C:\Program Files (x86)\Git/libexec/git-core/git-flow: line 68: /gitflow-common: No such file or directory
C:\Program Files (x86)\Git/libexec/git-core/git-flow: line 76: /gitflow-shFlags: No such file or directory
Looking at the first error in the git-flow bash file, line 45 contains:
export GITFLOW_DIR=$(dirname "$0")
I've also tried following the steps here https://github.com/nvie/gitflow/issues/issue/25?authenticity_token=54d6387519b4751c2fb13840c52bb819dee10af4 but it doesn't make any difference.
Any ideas?
Thanks