在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.gitgit push -u origin master出现例如以下错误:
找了半天原因原来是没有安装SSH Key。
首先须要在client上安装SSH Key,此外还须要在远程github服务端,个人设置中加入SSHKey。
详细操作过程例如以下帖: