ISSUE
osx에서 brew를 이용해서 git flow 설치하고 사용을 하고 있다.
intellij에서 git flow plugin을 설치했다. 그리고 feature start를 하려고 하니 git flow를 찾을 수 없다는 오류가 발생했다.
RESOLVE
$ which git-flow
/usr/local/bin/git-flow
$ sudo ln -s /usr/local/bin/git-flow /usr/bin/git-flow
osx에서 brew를 이용해서 git flow 설치하고 사용을 하고 있다.
intellij에서 git flow plugin을 설치했다. 그리고 feature start를 하려고 하니 git flow를 찾을 수 없다는 오류가 발생했다.
$ which git-flow
/usr/local/bin/git-flow
$ sudo ln -s /usr/local/bin/git-flow /usr/bin/git-flow