git remote -v //看一下当前连接方式
git remote set-url origin git@github.com:someaccount/someproject.git //改成ssh,这里你项目的ssh地址
git remote -v //再查看一下,url是否已经变成了ssh地址

第一步:
git remote -v 查看远程地址别名及路径
origin https://github.com/kkeeliu/doubao_community_frontend.git (fetch)
origin https://github.com/kkeeliu/doubao_community_frontend.git (push)
第二步:
git remote set-url origin git@github.com:kkeeliu/doubao_community_frontend.git
第三步:
git remote -v 查看修改是否成功