在GitBush中向已经存在的Repository提交README.md修改。命令如下:
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin
git@github.com:yunfuyiren/Test.git
git push -u origin master
出现如下错误:

找了半天原因原来是没有安装SSH Key。
首先需要在客户端上安装SSH Key,此外还需要在远程github服务端,个人设置中添加SSHKey。
具体操作步骤如下帖: