最近在实习公司服务器上使用git clone命令出错,(git 已经安装)

错误内容:

fatal: unable to find remote helper for 'https'

经过网上查找解决方案,发现是PATH路径没有包含git-core的原因,尝试使用网上命令解决:

PATH=$PATH:/usr/libexec/git-core

结果发现无论是这个命令,还是添加export都不能解决问题:

export PATH=$PATH:/usr/libexec/git-core

会出现新的错误内容:

warning: templates not found in /usr/local/git/share/git-core/templates fatal: unable to find remote helper for 'https'

通过分析,可能是PATH路径错误,重新修改后成功解决问题,可以使用Git指令:

最终指令在~/.bashrc下修改

增加内容(也可以用echo指令直接增加):

export PATH=$PATH:/data_share/tools/git/libexec/git-core

成功 !

 

Logo

更多推荐