一、 解决本地项目绑定远程库时报错:

fatal: repository ‘https://github.com/HelloAllenW/’ not found
问题分析:远程库绑定错误
1、查看远程库:git remote -v
2、删除远程库:git remote remove origin
3、添加远程库:git remote add origin [远程地址]
其他:
1、查看当前用户:git config user.name
2、查看当前邮箱:git config user.email
3、修改用户:git config --global user.name [用户名]、
4、修改邮箱:git config --global user.email [邮箱]

二、git push -u origin master报错使用git中的问题汇总

相关文章:

  • 2021-06-12
  • 2021-12-20
  • 2021-09-06
  • 2021-08-04
  • 2021-11-02
  • 2022-12-23
  • 2021-11-21
  • 2021-11-15
猜你喜欢
  • 2021-11-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
  • 2021-05-19
相关资源
相似解决方案