git push 시 Unable to find remote helper for 'https' 이라는 오류가 발생을 했다.
해결 방법은
The easiest way to fix this problem is to ensure that the git-core is added to the path for your current user
If you add the following to your bash profile file in ~/.bash_profile this should normally resolve the issue
PATH=$PATH:/usr/libexec/git-core
https://stackoverflow.com/a/45565648
"Unable to find remote helper for 'https'" during git clone
I am unable to clone HTTPS repositories. I can clone SSH repos fine, but not HTTPS repos. I cannot test the GIT protocol since I am behind a corporate firewall. This is what I am trying to do: $ ...
stackoverflow.com
~/.bash_profile 에 PATH=$PATH:/usr/libexec/git-core를 추가하니 해결되었다. 끝!
