Hi, I'm trying to clone git repository using --depth 1 parameter using https, but I'm getting internal server error when this parameter is used. Does anyone know how to overcome this issue? I've already tried to set git buffers and compression and so on, but nothing helps.
full error response:
error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500 Internal Server Error fatal: The remote end hung up unexpectedly
My issue was connected with CocoaPods, which was generating this problematic git clone parameter when I was referencing concrete tag in CocoaPods spec:
:git => "http://git.asdf.com/asdf/asdf.git", :tag => version
workaround was referencing commit instead of tag:
:git => "http://git.asdf.com/asdf/asdf.git", :commit => 'd749a0xa9da'
I am also facing this error too.
How can I solve this problem?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We ended up updating our Bamboo version and using the new Bamboo Source Control tasks.
We made compromises to go this route though, you'll have to see if it works for you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am also facing this error. I have an older repository with two commits on the master branch, i have already increased the buffer size. I can reliably reproduce from command line as well.
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.