When I try to clone on git bash, I receive this error:
$git clone
Cloning into \'name_project\'...
Password for \'\':
remote: Counti
Solution for failed with error: RPC failed; result=18, HTTP code = 200
Try running the command below in the remote repository if error is fatal: index-pack failed
git repack -a -f -d --window=250 --depth=250
Also try the below ones from the remote repository location if the above one didn't work:
git gc --aggressive
git repack -a -f -d --window=250 --depth=250
Try reducing the postBuffer size in the remote repository config. Follow the steps below
git config http.postBuffer 24288000