фатальный: невозможно найти удаленного помощника для https: проблема, когда git вытягивает или нажимает - PullRequest
0 голосов
/ 09 июля 2020

Я новичок в git, и сегодня возникла проблема при попытке установить sh или получить / из репозитория git. Моя версия git на CentOs7 - 2.27.0, и ошибка появляется как:

git push origin master
fatal: unable to find remote helper for 'https'

При проверке конфигурации:

git config --list --show-origin
file:/users/iess/.gitconfig     user.name=alberto.iess
file:/users/iess/.gitconfig     filter.lfs.clean=git-lfs clean -- %f
file:/users/iess/.gitconfig     filter.lfs.smudge=git-lfs smudge -- %f
file:/users/iess/.gitconfig     filter.lfs.process=git-lfs filter-process
file:/users/iess/.gitconfig     filter.lfs.required=true
file:/users/iess/.gitconfig     url.https://.insteadof=git+https://
file:.git/config        core.repositoryformatversion=0
file:.git/config        core.filemode=true
file:.git/config        core.bare=false
file:.git/config        core.logallrefupdates=true
file:.git/config        remote.origin.url=https://gitlab.com/astrogwml/ccsn-lstm.git
file:.git/config        remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
file:.git/config        branch.master.remote=origin
file:.git/config        branch.master.merge=refs/heads/master

https://gitlab.com/astrogwml/ccsn-lstm.git is точную строку, которую я получаю в репозитории gitlab для клонирования с HTTPS. Я действительно не знаю, с чего начать решать эту проблему. Помощь (и ссылки) будут очень признательны.

...