Git使用SSH提交代码到server出现 permission denied (publickey).

Posted llguanli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git使用SSH提交代码到server出现 permission denied (publickey).相关的知识,希望对你有一定的参考价值。

在GitBush中向已经存在的Repository提交README.md改动。

命令例如以下:

touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin
[email protected]:yunfuyiren/Test.gitgit push -u origin master
出现例如以下错误:

技术分享
技术分享

找了半天原因原来是没有安装SSH Key。
首先须要在client上安装SSH Key,此外还须要在远程github服务端,个人设置中加入SSHKey。


详细操作过程例如以下帖:






以上是关于Git使用SSH提交代码到server出现 permission denied (publickey).的主要内容,如果未能解决你的问题,请参考以下文章

使用git 提交代码到github

git提交代码报错Permission denied, please try again

git提交代码到远程仓库github

「git」mac下git提交github代码

git 使用

git上传文件到github与gulp的简单使用