写点什么

Pushing to Git returning Error Code 403

作者:刿刀
  • 2023-03-22
    山东
  • 本文字数:251 字

    阅读完需:约 1 分钟

本地包含多个仓库和多个账户,在新的 GitHub 地址里创建工程修改提交的时候,报错解决方案,重新配置remote url


  1. Edit .git/config file under your repo directory.

  2. Find url=entry under section [remote "origin"].

  3. Change it from: url=https://MichaelDrogalis@github.com/derekerdmann/lunch_call.git to: url=ssh://git@github.com/derekerdmann/lunch_call.git

  4. That is, change all the texts before @ symbol to ssh://git

  5. Save config file and quit. now you could use git push origin master to sync your repo on GitHub.

用户头像

刿刀

关注

还未添加个人签名 2018-11-15 加入

还未添加个人简介

评论

发布
暂无评论
Pushing to Git returning Error Code 403_刿刀_InfoQ写作社区