When I try to clone on git bash, I receive this error:
$git clone
Cloning into \'name_project\'...
Password for \'\':
remote: Counti
Hey I had same issue but resolved from link i mentioned below
https://confluence.atlassian.com/pages/viewpage.action?pageId=301663284
EDIT:
** From Website: **
Workaround:
While we have server site settings set appropriately for this option, you may need to adjust/override your client's settings. To do this, execute the following command(s):
From within a specific repository. Note the number at the end is the size, in bytes that you wish to allow in a single post. If you have much larger files, you may need to increase this number.
git config http.postBuffer 524288000To set this gloablly for all remote Git repositories you ever connect to
git config --global http.postBuffer 524288000
I'm not quite sure that it'll work for everyone, but this solved my problem