I have installed two Windows servers with the latest versions of Cygwin and Git,
and I am trying to clone the git repository from S1 to S2.
I can successfully ssh
from S2 to S1 using RSA keys, but when I do this :
git clone "ssh://root@S1/path/to/my/repo"
it throws back this output:
Cloning into /cygdrive/c/program files/apache software foundation/apache2.2/…
2 [main] git 2004 C:/cygwin/lib/git-core/git.exe *** fatal error
- cygheap base mismatch detected - 0x61242860/0x6123790.
This problem is probably due to using incompatible versions of the cygwin DLL.
Search for cygwin1.dll using the Windows Start->Find/Search facility
and delete all but the most recent version. The most recent version *should*
reside in x:\cygwin\bin, where 'x' is the drive on which you have
installed the cygwin distribution. Rebooting is also suggested if you
are unable to find another cygwin DLL.
--5 more errors like that one --
remote: Counting objects: 3275, done.
remote: Compressing objects: 100% (3106/3106), done.
fatal: write error: Broken pipe
So I followed the suggested instructions, but no luck. Any suggestions?