[Pharo-users] Pharo 7, Iceberg, Proxy and Windows

2018-06-20 Thread Vitor Medina Cruz
Hello, Iceberg fail to function behind a proxy on Pharo 7 32bits Windows. When I try to clone I get a: IceGenericError: failed to get server certificate: The identifier is not in the correct state for the resquested operation I had a similar problem some time ago with Pharo 6, in which I made a

Re: [Pharo-users] Pharo 7, Iceberg, Proxy and Windows

2018-06-21 Thread Vitor Medina Cruz
Ok, I forgot to mention I have changed LGitRepository>>clone:url:local_path:options:, but for some odd reason it's arguments names were switched to arg 1, arg2, arg3 etc, so the out error was because was renamed to one of those generic arg names. I figure that out looking at the versions of the met

Re: [Pharo-users] Pharo 7, Iceberg, Proxy and Windows

2018-06-21 Thread Vitor Medina Cruz
I am sorry, the correct message is "LGit_GIT_ERROR: failed to get server certificate: The handle is in the wrong state for the requested operation". I tried to add corporate certificates to the git curl-ca-bundle.crt, I tried to git config --global http.sslVerify false also, no success... :( On

Re: [Pharo-users] Pharo 7, Iceberg, Proxy and Windows

2018-06-22 Thread Vitor Medina Cruz
How do you debug and/or log what's happening inside Libgit? I think I will have to look deep into it to understand what is the problem. On Thu, Jun 21, 2018 at 12:48 PM, Vitor Medina Cruz wrote: > I am sorry, the correct message is "LGit_GIT_ERROR: failed to get server > certificate: The handle

Re: [Pharo-users] Pharo 7, Iceberg, Proxy and Windows

2018-06-22 Thread Esteban Lorenzano
hi, > On 22 Jun 2018, at 15:01, Vitor Medina Cruz wrote: > > How do you debug and/or log what's happening inside Libgit? I think I will > have to look deep into it to understand what is the problem. I put a breakpoint in the function I want to start debugging. Esteban > > On Thu, Jun 21, 20

Re: [Pharo-users] Pharo 7, Iceberg, Proxy and Windows

2018-06-25 Thread Guillermo Polito
Hi Vitor, I've created an issue with your problem. https://github.com/pharo-vcs/iceberg/issues/885 I encourage you to do so too, because following the mailing list is sometimes hard :) About your second issue, you should know that libgit ( libgit2.github.com/libgit2) will mostly bypass git and

Re: [Pharo-users] Pharo 7, Iceberg, Proxy and Windows

2018-06-26 Thread Vitor Medina Cruz
Thanks Guille, will do that on further occasions, I just got excited to make it work for me :) I had see the page you sent already, but git works fine in any other program here (eg. command line, Intellij and Sourcetree) so I don't think the problem here is related to what was described by the sta