ubuntu下面git推送到远程库时常见的错误

时间:2024-05-20 22:37:44

一、error: src refspec master does not match any.

此错误说的是你本地库中没有东西,因为你没有将文件提交到库中,用 git commit -m " "

ubuntu下面git推送到远程库时常见的错误

 

二、fatal: 无法读取远程仓库(远程库权限问题)

此错误是由于没有在github远程库中添加ssh key

ubuntu下面git推送到远程库时常见的错误

在github中添加ssh key

1、在ubuntu中生成ssh key

Enter file in which to save the key (/home/xinu/.ssh/id_rsa):这里按回车键

Enter passphrase (empty for no passphrase):如果按回车表示密码为空,请按实际处理

ubuntu下面git推送到远程库时常见的错误

2、复制ssh key

ubuntu下面git推送到远程库时常见的错误

3、粘贴ssh key到github远程库中

ubuntu下面git推送到远程库时常见的错误

三、可能再次推送是出现Agent admitted failure to sign using the key.

这是因为**没有加到**库中(ssh-add  ~/.ssh/id_rsa)

ubuntu下面git推送到远程库时常见的错误

 

四,fatal: Could not read from remote repository.(前面都解决不了,用以下方法)

修改./git/conmfig文件中的url

url=https://github.com/你的用户名/你的库的名字.git

五、一个仓库已向该引用进行了推送。再次推送前,您可能需要先整合远程变更

解决方案如下:

1.强行上传   git push -u origin +master        

2. 尽量先同步github上的代码到本地,在上面更改之后再上传