The push doesn't complete and I receive the following error message...
git -c diff.mnemonicprefix=false -c core.quotepath=false -c credential.helper=sourcetree push -v --tags origin refs/heads/master:refs/heads/master
Pushing to https://pemb4660@bitbucket.org/pemb4660/4yp_repository.git
POST git-receive-pack (chunked)
Any help would be appreciated!
Thanks
Hi James! This seems to be an issue with Git and not Sourcetree; you could try to perform this operation from the command line and see if you get the same message.
regarding the message itself, in most cases it means it's uploading files to the server. It could also be that you're getting this bug in Git: when using HTTPS it will use chunked encoding for uploads above a certain size. Those do not work.
A trivial fix is to tell git to not chunk until some ridiculously large size value, such as:
git config http.postBuffer 524288000
Hope that helps!
Ana
Thanks, It helps me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.