Git
__心诺
最能让人感到快乐的事,莫过于经过一番努力后,所以东西正慢慢变成你想要的样子。
展开
-
git add readme.txt 报错 fatal: pathspec 'readme.txt' did not match any files
使用 git add readme.txt 命令,将本地文件增加到仓库时,命令报错 fatal: pathspec ‘readme.txt’ did not match any files 说明在增加时,本地文件下没有这个文件,重新创建 readme.txt , 然后在使用命令增加即可!...原创 2018-07-09 21:17:02 · 5901 阅读 · 0 评论 -
github连接报 "ssh: connect to host github.com port 22: Connection timed out" 错误
在连接github时,执行 ssh -T git@github.com 命令时,出现以下错误 ssh: connect to host github.com port 22: Connection timed out 解决办法 在存放公钥私钥(id_rsa 和 id_rsa.pub)的文件里,新建config文本,内容如下: Host github.com User YourEmail...原创 2018-07-09 21:31:27 · 2338 阅读 · 0 评论 -
windows下生成git ssh key
由于本地Git仓库和GitHub仓库之间的传输是通过SSH加密的,所以必须要让github仓库认证你SSH key,在此之前,必须要生成SSH key。 1、cd ~/.ssh/ 【如果没有对应的文件夹,则执行 mkdir ./.ssh】 2、输入git 用户名及邮件 git config –global user.name “xxx” git config –global us...原创 2018-07-09 22:09:26 · 9764 阅读 · 0 评论