我已经创建了一个Github存储库,我正在尝试向该存储库添加一个简单的文本文件。
此文件位于与存储库名称相同的文件夹中。
这是我第一次使用Github,我搜索了其他类似的问题,但找不到答案。
因此,使用Git bash,我导航到该文件夹并输入:
git add texto.txt
git commit -m "first commit"
git push origin master
但是文件没有上传,我看到错误:
git@github.com: Permission denied (public key)
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我在这里的PC中创建了SSH / RSA密钥:
C:/Users/xxxxxx/.ssh/id_rsa
我知道这应该很简单,但是可以肯定,我在这里做错了。
答案 0 :(得分:1)
Git add
是使Git知道文件的第一步。
下一步是git commit
创建文件快照(您的提交可以包含您add
进行的多次更改)
最后一步是git push
对github的更改。
add
使git知道您的更改。 commit
将一个或多个更改捆绑到快照中。 push
将一个或多个提交推送到另一个git存储库。
我强烈建议您阅读入门教程: