go get下载的项目没办法跳转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go get下载的项目没办法跳转相关的知识,希望对你有一定的参考价值。
参考技术A 这种问题相对原因比较多。1.可能是你的网络不太好。
2.远端服务器无响应。
go get不能获取github包的解决办法
问题:
fatal: unable to access 'https://github.com/chenqionghe/amount-calculator/': Failed to connect to github.com port 443: Operation timed out
原因很明显,是因为go get是基本git的方式获取仓库的,然后默认用的是https的,被拒绝了,我们需要换成ssh的
解决
命令行替换
git config --global url.git@github.com:.insteadOf https://github.com/
以上是关于go get下载的项目没办法跳转的主要内容,如果未能解决你的问题,请参考以下文章
解决Golang使用过程中go get 下载github项目慢或无法下载
Go语言 go get 找不到 google.golang.org/protobuf/encoding/prototext 解决办法