搞了一天了,编译的时候,总是出现 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
重启或者重新登录即可是环境变量生效