I have a personal / private bitpack repository that I am trying to clone. When I clone from an Ubuntu window, I can clone the repository:
$ git clone https://<user>@bitbucket.org/<user>/<repo>.git Cloning into '<repo>'... Password for 'https://<user>@bitbucket.org': remote: Counting objects: 586, done. remote: Compressing objects: 100% (519/519), done. remote: Total 586 (delta 65), reused 583 (delta 65) Receiving objects: 100% (586/586), 2.55 MiB | 650 KiB/s, done. Resolving deltas: 100% (65/65), done.
However, when I try to execute the same command from cygwin, I get a silent failure:
$ git clone -v --progress https://<user>@bitbucket.org/<user>/<repo>.git Cloning into <repo>...
And then git will come out. I spent an hour trying to track this, but silent errors are hard for Google.
Things I tried:
- reinstall git in cygwin
- downgrade git in cygwin
- delete and restore the .gitconfig file
- echo $? prints 141 (maybe related to SIGPIPE?)
- GIT_CURL_VERBOSE setting did not produce added output
Note: git version 1.7.5.1
Does anyone have an idea of ββwhat could be happening here?
edit / update
Unable to find a solution to the problem, I completely reinstalled cygwin and the problem seems to be gone.
git cygwin
Andrew Prock
source share