将app推送到github时出现问题。这就是我在命令行中输入的内容。希望这只是一个我可以解决的小问题。
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:travi5567/first_app.git
git push -u origin master
这是我得到的错误:
Traviss-MacBook-Pro:sample_app Travis$ git push -u origin master
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
答案 0 :(得分:2)
GitHub使用SSH密钥配置对git存储库的访问。如果你是所有者,你可以推送回购,但你需要告诉git你的SSH密钥,以便他们知道你是谁。
所有这些都在GitHub网站上解释 - https://help.github.com/articles/generating-ssh-keys
答案 1 :(得分:2)
如果你不知道如何使用SSH密钥,或者不想知道如何使用,那么你也可以使用https
遥控器:
git remote add origin https://travis5567@github.com/travis5567/first_app.git
git push origin master
Password for travis5567: <enter your password>
# regular output from a git push