问题整理
refusing to merge unrelated histories
两个仓库有不同的开始点,也就是两个仓库没有共同的提交历史,出现无法提交的情况
bash
git pull origin master --allow-unrelated-histories
git pull origin master --allow-unrelated-histories
The requested URL returned error: 403
控制面板>用户账户>凭据管理器下更改账户名和密码,确保和提交代码的仓库一致
Failed to connect to 127.0.0.1 port 1181 after 2045 ms: Connection refused
一般是由于设置了代理所致
bash
git config --global --unset http.proxy
git config --global --unset http.proxy
并且需要检查windows是否开启代理,开启了则关闭
#Unable to negotiate with xx.xx.xx.xx port 29418: no matching key exchange method found
在C盘 “用户/当前用户名/.ssh/” 目录下新建一个 config 文件,无扩展名。然后使用写字板等工具打开,输入并保存以下内容:
sh
Host *
PubkeyAcceptedKeyTypes +ssh-rsa
HostKeyAlgorithms +ssh-rsa
Host *
PubkeyAcceptedKeyTypes +ssh-rsa
HostKeyAlgorithms +ssh-rsa
git branch后什么也不显示 没有任何反应
需要commit完才能显示
https://blog.csdn.net/weixin_45771601/article/details/120855432