I'm trying to clone a internal repository from our company repository, and I keep getting this error:
error: RPC failed; result=18, HTTP code = 200
It always happens only after the repository have been completely downloaded (It takes a while).
I've tried using torotiseGit. Here is the report:
git.exe clone --progress -v "http://path/repository.git" "C:\Users\user\Documents\code\repository"
Cloning into 'C:\Users\user\Documents\code\repository'...
POST git-upload-pack (424 bytes)
remote: Compressing objects: 100% (4895/4895)
Receiving objects: 100% (6970/6970), 61.89 MiB | 4.82 MiB/s
Resolving deltas: 100% (2610/2610)
Resolving deltas: 100% (2610/2610), done.
remote: Total 6970 (delta 2610), reused 5702 (delta 1672)
error: RPC failed; result=18, HTTP code = 200
git did not exit cleanly (exit code 128)
I've tried several times, from a Linux machine and from a windows machine. Same error
How can i further investigate the error? I couldn't find any useful information on Google
EDIT: I've checked the Apache logs on the Git server - There is a GET and a POST (with result 200) corresponding to each clone. The POST is a bit big (60MB) - So I've tried increasing the postBuffer to 500MB, but the error still occurs
Could this really be a git bug?
I wish it gave more informative errors...