Akshay
Akshay

Reputation: 2983

Git Problem in Mac (Fatal Error)

I am setting up one git client on Mac (Using Source Tree). While committing the code it is showing the following error(please check the screen-shot). Any idea to solve this error ?

ERROR : enter image description here

Upvotes: 0

Views: 457

Answers (2)

Antti
Antti

Reputation: 12479

HTTP code 501 stands for "not implemented". If the git server works over http using another client, the configuration on the client side is incorrect, so make sure you have configured the correct server address, user name and password. (If the git server doesn't work over http on any clients, the server configuration is incorrect.)

Upvotes: 2

Shauna
Shauna

Reputation: 9596

That generally happens when your server denies your connection. There are a number of causes for getting denied:

  • No/wrong SSH key (if the server uses SSH authentication)
  • Wrong port set up (the server doesn't expect connections from port 22, for example)
  • No/wrong username/password stored for the connection
  • Server set up wrong and still denying where it should be accepting

Check all your settings to make sure everything is right.

Upvotes: 3

Related Questions