IDEA Git 提交 403 Error Code

今天楼主使用 idea 的 git 插件往 github 提交代码的时候出现了如下报错

1
Failed with error: unable to access XXXXX. The requested URL returned error: 403

特此记录,以便下次遇到相同问题时翻阅!

Step 1:

  • 打开 C:\Users"username”.ssh 目录下的 config 文件,楼主这里是 C:\Users\hasee.ssh.config

Alt text

  • 选择你需要用来提交的 host 记为 “host_name”,楼主这里选择 knight-jxnu,如果一台电脑上配置了多个 github 就会有多个 host

Alt text

Step 2:

打开 project.git\config

Alt text

在 “github.com” 前面加上 “host_name”

Before:

Alt text

After:

Alt text

Step 3:

继续 push !

|