1

I am running FreeBSD 9.2.1. I have tried pushing to GitHub via:

sudo git push -u origin master

But I get:

fatal: Unable to find remote helper for 'https'

I have tried updating git to 2.17.0 and also getting a later version of curl and recompiling git. But to no avail.

What may I do about this?

Mateusz Piotrowski
  • 8,029
  • 10
  • 53
  • 79
Ariel Baron
  • 331
  • 4
  • 13

1 Answers1

0

cd /usr/ports/devel/git
make config

select checkbox "Data transfer support via cURL"

rebuild and reinstall git:
make deinstall
make install clean

It's checked on FreeBSD 12

Igor
  • 1,589
  • 15
  • 15