Reputation: 2983
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 :
Upvotes: 0
Views: 457
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
Reputation: 9596
That generally happens when your server denies your connection. There are a number of causes for getting denied:
Check all your settings to make sure everything is right.
Upvotes: 3