【物联网】OpenWrt编译出现Unable to find remote helper for 'https'问题

简介:


搞了一天了,编译的时候,总是出现 fatal: Unable to find remote helper for 'https'这样的错误。今天终于解决了。

今天知道问题的原因了,是因为/usr/local/libexec/git-core路径没在 PATH 环境变量中。

deng@cecport:/usr/local/libexec/git-core$ pwd
/usr/local/libexec/git-core
deng@cecport:/usr/local/libexec/git-core$ ls
git                   git-count-objects             git-gui                 git-merge-subtree        git-remote             git-sh-setup
git-add               git-credential                git-gui--askpass        git-mergetool            git-remote-ext         git-stage
git-add--interactive  git-credential-cache          git-hash-object         git-mergetool--lib       git-remote-fd          git-stash
git-am                git-credential-cache--daemon  git-help                git-merge-tree           git-remote-ftp         git-status
git-annotate          git-credential-store          git-http-backend        git-mktag                git-remote-ftps        git-stripspace
git-apply             git-cvsexportcommit           git-http-fetch          git-mktree               git-remote-http        git-submodule
git-archimport        git-cvsimport                 git-http-push           git-mv                   git-remote-https       git-submodule--helper
git-archive           git-cvsserver                 git-imap-send           git-name-rev             git-remote-testpy      git-svn
git-bisect            git-daemon                    git-index-pack          git-notes                git-remote-testsvn     git-symbolic-ref
git-bisect--helper    git-describe                  git-init                git-p4                   git-repack             git-tag
git-blame             git-diff                      git-init-db             git-pack-objects         git-replace            git-tar-tree
git-branch            git-diff-files                git-instaweb            git-pack-redundant       git-repo-config        git-unpack-file
git-bundle            git-diff-index                git-interpret-trailers  git-pack-refs            git-request-pull       git-unpack-objects
git-cat-file          git-difftool                  git-log                 git-parse-remote         git-rerere             git-update-index
git-check-attr        git-difftool--helper          git-lost-found          git-patch-id             git-reset              git-update-ref
git-check-ignore      git-diff-tree                 git-ls-files            git-peek-remote          git-revert             git-update-server-info
git-check-mailmap     git-fast-export               git-ls-remote           git-prune                git-rev-list           git-upload-archive
git-checkout          git-fast-import               git-ls-tree             git-prune-packed         git-rev-parse          git-upload-pack
git-checkout-index    git-fetch                     git-mailinfo            git-pull                 git-rm                 git-var
git-check-ref-format  git-fetch-pack                git-mailsplit           git-push                 git-send-email         git-verify-commit
git-cherry            git-filter-branch             git-merge               git-quiltimport          git-send-pack          git-verify-pack
git-cherry-pick       git-fmt-merge-msg             git-merge-base          git-read-tree            git-shell              git-verify-tag
git-citool            git-for-each-ref              git-merge-file          git-rebase               git-sh-i18n            git-web--browse
git-clean             git-format-patch              git-merge-index         git-rebase--am           git-sh-i18n--envsubst  git-whatchanged
git-clone             git-fsck                      git-merge-octopus       git-rebase--interactive  git-shortlog           git-worktree
git-column            git-fsck-objects              git-merge-one-file      git-rebase--merge        git-show               git-write-tree
git-commit            git-gc                        git-merge-ours          git-receive-pack         git-show-branch        mergetools
git-commit-tree       git-get-tar-commit-id         git-merge-recursive     git-reflog               git-show-index
git-config            git-grep                      git-merge-resolve       git-relink               git-show-ref
deng@cecport:/usr/local/libexec/git-core$ 

这导致里面的 git-remote-https, git-remote-http 这些得不到执行。所以 git 所表现出来的功能不全。

解决办法是:将 /usr/local/libexec/git-core 纳入 PATH,至少在使用 git 之前,设置一下PATH。

deng@cecport:/usr/local/libexec/git-core$ vim ~/.bashrc
最后一行添加如下:
 export PATH=/usr/local/libexec/git-core:$PATH

重启或者重新登录即可是环境变量生效

相关实践学习
阿里云AIoT物联网开发实战
本课程将由物联网专家带你熟悉阿里云AIoT物联网领域全套云产品,7天轻松搭建基于Arduino的端到端物联网场景应用。 开始学习前,请先开通下方两个云产品,让学习更流畅: IoT物联网平台:https://iot.console.aliyun.com/ LinkWAN物联网络管理平台:https://linkwan.console.aliyun.com/service-open
相关文章
|
存储 网络安全
Curl error (60): SSL peer certificate or SSH remote key was not OK for https://update.cs2c.com.cn/NS/V10/V10SP2/os/adv/lic/base/x86_64/repodata/repomd.xml [SSL: no alternative certificate subject name matches target host name 'update.cs2c.com.cn']
【10月更文挑战第30天】在尝试从麒麟软件仓库(ks10-adv-os)下载元数据时,遇到 SSL 证书验证问题。错误提示为:`Curl error (60): SSL peer certificate or SSH remote key was not OK`。可能原因包括证书不被信任、证书与域名不匹配或网络问题。解决方法包括检查网络连接、导入 SSL 证书、禁用 SSL 证书验证(不推荐)、联系仓库管理员、检查系统时间和尝试其他镜像。
4595 1
|
监控 网络协议 物联网
erlang物联网开源项目emqtt下载,源码编译,调试工具和图形化监控相关(一)
erlang物联网开源项目emqtt下载,源码编译,调试工具和图形化监控相关(一)
725 2
|
消息中间件 域名解析 监控
erlang物联网开源项目emqtt下载,源码编译,调试工具和图形化监控相关(二)
erlang物联网开源项目emqtt下载,源码编译,调试工具和图形化监控相关(二)
443 1
remote: Incorrect username or password ( access token ) fatal: Authentication failed for 'https:/...
remote: Incorrect username or password ( access token ) fatal: Authentication failed 开门见山—— 解决方法: 1.
5734 0
|
移动开发 物联网 应用服务中间件
(转)利用libcurl和国内著名的两个物联网云端通讯的例程, ubuntu和openwrt下调试成功(四)
1. libcurl 的参考文档如下 CURLOPT_HEADERFUNCTION Pass a pointer to a function that matches the following prototype: size_t function( void *ptr, size_t size, size_t nmemb, void *userdata);.
1907 0
|
开发工具 git
Unable to find remote helper for 'https'
出现这个报错,说明git目前的状态是正常的,要么没装好,要么自己解决压缩安装导致没有权限 第三次情况是,使用yum install git 重新安装后,仍然报错,是因为环境变量中GIT_HOM配置的仍然是有问题的老http://blog.
2768 0

相关产品

  • 物联网平台
  • 下一篇
    开通oss服务