public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* git clone https failed on 2.31.1-2, works on 2.31.1-1
@ 2021-06-09 17:22 Jason Pyeron
  2021-06-09 17:37 ` Marco Atzeri
  0 siblings, 1 reply; 3+ messages in thread
From: Jason Pyeron @ 2021-06-09 17:22 UTC (permalink / raw)
  To: cygwin

Just did a fresh cygwin install base + git+nano+wget

Clone is not happy.

Is this an issue of: ooks like not having (lib)curl-devel installed when you compile git ( https://stackoverflow.com/a/13018777/58794  )

USERNAME@HOSTNAME1 /projects
$ git clone https://HOSTNAME2/URL.git -b files-stsw-link009.zip
Cloning into 'sharptown-files-stlink'...
fatal: unable to find remote helper for 'https'


C:\>c:\Users\USERNAME\Downloads\setup-x86_64.exe

C:\>Starting cygwin install, version 2.908
User has backup/restore rights
Current Directory: C:\Users\USERNAME\Downloads
source: network install
root: C:\cygwin64 system
Selected local directory: C:\Users\USERNAME\Downloads
net: Preconfig
site: https://mirrors.kernel.org/sourceware/cygwin/
solving: 0 tasks, update: yes, use test packages: no
solving: 1 tasks, update: no, use test packages: no
Augmented Transaction List:
   0 install git 2.31.1-1
   1   erase git 2.31.1-2
Downloaded C:\Users\USERNAME\Downloads/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/git/git-2.31.1-1.tar.xz
Uninstalling git
Extracting from file://C:\Users\USERNAME\Downloads/https%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f/x86_64/release/git/git-2.31.1-1.tar.xz
Changing gid back to original
running: C:\cygwin64\bin\dash.exe "/etc/postinstall/0p_000_autorebase.dash"
running: C:\cygwin64\bin\dash.exe "/etc/postinstall/0p_update-info-dir.dash"
running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_adwaita-icon-theme.sh"
running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_desktop-file-utils.sh"
running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_fontconfig_cache_1.sh"
running: C:\cygwin64\bin\dash.exe "/etc/postinstall/zp_fontconfig_dtd.dash"
running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_glib2.0.sh"
running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_hicolor-icon-theme.sh"
running: C:\cygwin64\bin\dash.exe "/etc/postinstall/zp_man-db-update-index.dash"
running: C:\cygwin64\bin\bash.exe --norc --noprofile "/etc/postinstall/zp_shared-mime-info.sh"
Changing gid to Administrators



USERNAME@HOSTNAME1 /projects
$ git clone https://HOSTNAME2/URL.git -b files-stsw-link009.zip
Cloning into 'sharptown-files-stlink'...
Username for 'https://HOSTNAME2':
Password for 'https://USERNAME@HOSTNAME2':
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), 5.08 MiB | 6.81 MiB/s, done.

USERNAME@HOSTNAME1 /projects
$







--
Jason Pyeron  | Architect
PD Inc        |
10 w 24th St  |
Baltimore, MD |
 
.mil: jason.j.pyeron.ctr@mail.mil
.com: jpyeron@pdinc.us
tel : 202-741-9397




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: git clone https failed on 2.31.1-2, works on 2.31.1-1
  2021-06-09 17:22 git clone https failed on 2.31.1-2, works on 2.31.1-1 Jason Pyeron
@ 2021-06-09 17:37 ` Marco Atzeri
  2021-06-09 17:54   ` [cygwin] " Jason Pyeron
  0 siblings, 1 reply; 3+ messages in thread
From: Marco Atzeri @ 2021-06-09 17:37 UTC (permalink / raw)
  To: cygwin

On 09.06.2021 19:22, Jason Pyeron wrote:
> Just did a fresh cygwin install base + git+nano+wget
> 
> Clone is not happy.
> 
> Is this an issue of: ooks like not having (lib)curl-devel installed when you compile git ( https://stackoverflow.com/a/13018777/58794  )
> 
> USERNAME@HOSTNAME1 /projects
> $ git clone https://HOSTNAME2/URL.git -b files-stsw-link009.zip
> Cloning into 'sharptown-files-stlink'...
> fatal: unable to find remote helper for 'https'
> 

It works for me

$ cygcheck -c git
Cygwin Package Information
Package              Version        Status
git                  2.31.1-2       OK


$ git clone https://github.com/nco/nco.git
Cloning into 'nco'...
remote: Enumerating objects: 108577, done.
remote: Counting objects: 100% (1195/1195), done.
remote: Compressing objects: 100% (499/499), done.
remote: Total 108577 (delta 904), reused 956 (delta 677), pack-reused 107382
Receiving objects: 100% (108577/108577), 63.37 MiB | 8.94 MiB/s, done.
Resolving deltas: 100% (89814/89814), done.


and curl was present during the build

$ cygcheck /usr/libexec/git-core/git-http-fetch.exe
D:\cygwin64\usr\libexec\git-core\git-http-fetch.exe
   D:\cygwin64\bin\cygcurl-4.dll
..

$ cygcheck /usr/libexec/git-core/git-http-push.exe
D:\cygwin64\usr\libexec\git-core\git-http-push.exe
   D:\cygwin64\bin\cygcurl-4.dll
...


may be you had an incomplete installation ?

Marco

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [cygwin] Re: git clone https failed on 2.31.1-2, works on 2.31.1-1
  2021-06-09 17:37 ` Marco Atzeri
@ 2021-06-09 17:54   ` Jason Pyeron
  0 siblings, 0 replies; 3+ messages in thread
From: Jason Pyeron @ 2021-06-09 17:54 UTC (permalink / raw)
  To: cygwin

> -----Original Message-----
> From: Jason Pyeron 
> Sent: Wednesday, June 9, 2021 1:50 PM
> To: 'Marco Atzeri' (oops - got hit by a reply bug)
> Subject: RE: [cygwin] Re: git clone https failed on 2.31.1-2, works on 2.31.1-1
> 
> > -----Original Message-----
> > From: Marco Atzeri
> > Sent: Wednesday, June 9, 2021 1:38 PM
> > To: cygwin@cygwin.com
> > Subject: [cygwin] Re: git clone https failed on 2.31.1-2, works on 2.31.1-1
> >
> > On 09.06.2021 19:22, Jason Pyeron wrote:
> > > Just did a fresh cygwin install base + git+nano+wget
> > >
> > > Clone is not happy.
> > >
> > > Is this an issue of: ooks like not having (lib)curl-devel installed when you compile git (
> > https://stackoverflow.com/a/13018777/58794  )
> > >
> > > USERNAME@HOSTNAME1 /projects
> > > $ git clone https://HOSTNAME2/URL.git -b files-stsw-link009.zip
> > > Cloning into 'sharptown-files-stlink'...
> > > fatal: unable to find remote helper for 'https'
> > >
> >
> > It works for me
> >
> > $ cygcheck -c git
> > Cygwin Package Information
> > Package              Version        Status
> > git                  2.31.1-2       OK
> 
> Running setup to upgrade back works for me too.
> 
> Doing a fresh install, again fails.
> 
> $ GIT_TRACE=1 git clone http://cygwin.com/git/newlib-cygwin.git
> 13:48:44.184571 git.c:447               trace: built-in: git clone http://cygwin.com/git/newlib-
> cygwin.git
> Cloning into 'newlib-cygwin'...
> 13:48:44.254148 run-command.c:667       trace: run_command: git remote-http origin
> http://cygwin.com/git/newlib-cygwin.git
> fatal: unable to find remote helper for 'http'

It is some weird local file system permission issue on that machine.

Different machine where I install and use as the same (admin) user does not show the problem.

Meh.

> 
> $ cygcheck -c
> Cygwin Package Information
> Package                 Version                         Status
> _autorebase             001007-1                        OK
> alternatives            1.3.30c-10                      OK
> base-cygwin             3.8-1                           OK
> base-files              4.3-3                           OK
> bash                    4.4.12-3                        OK
> bzip2                   1.0.8-1                         OK
> ca-certificates         2.40-1                          OK
> coreutils               8.26-2                          OK
> crypto-policies         20190218-1                      OK
> csih                    0.9.11-1                        OK
> cygrunsrv               1.62-1                          OK
> cygutils                1.4.16-2                        OK
> cygwin                  3.2.0-1                         OK
> dash                    0.5.9.1-1                       OK
> diffutils               3.5-2                           OK
> editrights              1.03-1                          OK
> file                    5.39-1                          OK
> findutils               4.6.0-1                         OK
> gawk                    5.1.0-1                         OK
> getent                  2.18.90-4                       OK
> git                     2.31.1-2                        OK
> gnupg                   1.4.23-1                        OK
> grep                    3.0-2                           OK
> groff                   1.22.4-1                        OK
> gzip                    1.8-1                           OK
> hostname                3.13-1                          OK
> info                    6.7-1                           OK
> ipc-utils               1.0-2                           OK
> less                    581.2-1                         OK
> libargp                 20110921-3                      OK
> libassuan0              2.5.3-1                         OK
> libattr1                2.4.48-2                        OK
> libblkid1               2.33.1-2                        OK
> libbrotlicommon1        1.0.9-2                         OK
> libbrotlidec1           1.0.9-2                         OK
> libbz2_1                1.0.8-1                         OK
> libcares2               1.14.0-1                        OK
> libcbor                 0.5.0-1                         OK
> libcom_err2             1.44.5-1                        OK
> libcrypt2               4.4.20-1                        OK
> libcurl4                7.77.0-1                        OK
> libdb5.3                5.3.28-2                        OK
> libedit0                20130712-1                      OK
> libexpat1               2.2.6-1                         OK
> libfdisk1               2.33.1-2                        OK
> libffi6                 3.2.1-2                         OK
> libfido2                1.5.0-1                         OK
> libgcc1                 10.2.0-1                        OK
> libgdbm6                1.18.1-1                        OK
> libgdbm_compat4         1.18.1-1                        OK
> libgmp10                6.2.1-1                         OK
> libgnutls30             3.6.9-1                         OK
> libgpg-error0           1.37-1                          OK
> libgpgme11              1.9.0-1                         OK
> libgssapi_krb5_2        1.15.2-2                        OK
> libhogweed4             3.4.1-1                         OK
> libiconv2               1.16-2                          OK
> libidn2_0               2.3.1-1                         OK
> libintl8                0.19.8.1-2                      OK
> libk5crypto3            1.15.2-2                        OK
> libkrb5_3               1.15.2-2                        OK
> libkrb5support0         1.15.2-2                        OK
> liblz4_1                1.7.5-1                         OK
> liblzma5                5.2.4-1                         OK
> libmetalink3            0.1.3-1                         OK
> libmpfr6                4.1.0-1                         OK
> libncursesw10           6.1-1.20190727                  OK
> libnettle6              3.4.1-1                         OK
> libnghttp2_14           1.43.0-1                        OK
> libopenldap2_4_2        2.4.58-1                        OK
> libp11-kit0             0.23.20-1                       OK
> libpcre1                8.44-2                          OK
> libpcre2_8_0            10.37-1                         OK
> libpipeline1            1.5.3-1                         OK
> libpopt-common          1.18-1                          OK
> libpopt0                1.18-1                          OK
> libpsl5                 0.21.1-1                        OK
> libreadline7            7.0.3-3                         OK
> libsasl2_3              2.1.27-1                        OK
> libsigsegv2             2.10-2                          OK
> libsmartcols1           2.33.1-2                        OK
> libssh2_1               1.9.0-1                         OK
> libssl1.1               1.1.1f-1                        OK
> libstdc++6              10.2.0-1                        OK
> libtasn1_6              4.14-1                          OK
> libunistring2           0.9.10-1                        OK
> libusb0                 1.2.6.0-2                       OK
> libuuid1                2.33.1-2                        OK
> libxml2                 2.9.10-2                        OK
> libxxhash0              0.8.0-1                         OK
> libzstd1                1.5.0-1                         OK
> login                   1.13-1                          OK
> man-db                  2.9.4-1                         OK
> mintty                  3.5.0-1                         OK
> nano                    4.9-1                           OK
> ncurses                 6.1-1.20190727                  OK
> openssh                 8.5p1-1                         OK
> openssl                 1.1.1f-1                        OK
> p11-kit                 0.23.20-1                       OK
> p11-kit-trust           0.23.20-1                       OK
> perl                    5.32.1-1                        OK
> perl-Error              0.17029-2                       OK
> perl-Scalar-List-Utils  1.56-1                          OK
> perl-TermReadKey        2.38-3                          OK
> perl_autorebase         5.32.1-1                        OK
> perl_base               5.32.1-1                        OK
> publicsuffix-list-dafsa 20210519-1                      OK
> rebase                  4.5.0-1                         OK
> rsync                   3.2.3+20200903+git9f9240b-4     OK
> run                     1.3.4-2                         OK
> sed                     4.4-1                           OK
> tar                     1.34-1                          OK
> terminfo                6.1-1.20190727                  OK
> terminfo-extra          6.1-1.20190727                  OK
> tzcode                  2021a-1                         OK
> tzdata                  2021a-1                         OK
> util-linux              2.33.1-2                        OK
> vim-minimal             8.2.0486-1                      OK
> wget                    1.21.1-1                        OK
> which                   2.20-2                          OK
> xz                      5.2.4-1                         OK
> zlib0                   1.2.11-1                        OK
> zstd                    1.5.0-1                         OK


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-09 17:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-09 17:22 git clone https failed on 2.31.1-2, works on 2.31.1-1 Jason Pyeron
2021-06-09 17:37 ` Marco Atzeri
2021-06-09 17:54   ` [cygwin] " Jason Pyeron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).