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).的主要内容,如果未能解决你的问题,请参考以下文章