I have tried different methods to install this, but it still does not work. I am trying to clone from github using git clone https://github.com/CocaPods/Specs.git master
. Please share your ideas. I am using Mac Sierra with 8GB Ram.
Asked
Active
Viewed 305 times
1

Christoph
- 6,841
- 4
- 37
- 89
-
1Did you try again? Perhaps it was a server problem. – Christoph Dec 08 '16 at 07:55
-
Perhaps a [duplicate](http://stackoverflow.com/questions/17683295/git-bash-error-rpc-failed-result-18-htp-code-200b-1kib-s) – Christoph Dec 08 '16 at 08:20
-
yes dear i run it again and again but same error since a couple of week – Dec 08 '16 at 08:22
-
Then I would try the solutions from the linke above. – Christoph Dec 08 '16 at 08:25
-
ok dear i am trying that... thanx – Dec 08 '16 at 08:31
-
If you still face problems, update your question accordingly... – Christoph Dec 08 '16 at 08:48
-
ok dear i will update – Dec 08 '16 at 08:52
2 Answers
0
This error most likely cause of low buffer size of git
. Other reason, Antivirus or Firewall
could be modifying the HTTP packets.
- Increase the git buffer size:
$ git config --global http.postBuffer 2M
- Disable your
Antivirus or Firewall
for some time and try clone again.

Sajib Khan
- 22,878
- 9
- 63
- 73
0
not sure if your problem is cloning or running some command of the project.
to clone try both:
git clone https://github.com/CocoaPods/Specs.git
git clone git@github.com:CocoaPods/Specs.git

pedrorijo91
- 7,635
- 9
- 44
- 82