git 常见问题

问题1

git push -u origin master报错:error: failed to push some refs to 'github.com:duanyadian/learngit.git'

git 常见问题_第1张图片

解决:

1重新关联远程库,远程库地址换成步骤的SSH地址即可

问题2:
git push -u origin master报错:Please make sure you have the correct access rights and the repository exists.

git 常见问题_第2张图片

解决:

git 常见问题_第3张图片

1配置SSH公钥密匙:ssh-kengen -t rsa -C "邮箱",三次回车

问题3:

git init” 出现:reinitialized existing git repository

解决方法:可以使用 rm -rf .git,删除.git即可

问题4:

git pull origin master ” 出现:refusing to merge unrelated histories

解决方法:可以在 “git pull origin master” 添加 “--allow-unrelated-histories


 

你可能感兴趣的:(git,github,ssh)