git push 到两个远程的创库,github、bitbucket

浏览:33日期:2023-10-13

问题描述

我现在有一个本地创库,可以push到bitbucket上去,但是push到github上就会报错,如下:

remote: Permission to leopardpan/blog.git denied to leopardpanbaixin.fatal: unable to access ’https://github.com/leopardpan/blog.git/’: The requested URL returned error: 403 。

我的config如下:

[remote 'origin']url = https://github.com/leopardpan/blog.gitfetch = +refs/heads/:refs/remotes/origin/[remote 'bit']url = https://leopardpan@bitbucket.org/flutterSnow/demo-one.gitfetch = +refs/heads/:refs/remotes/bit/[branch 'master']remote = originremote = bitmerge = refs/heads/master

我的两个远程创库都存在,url也添加进来了,但是push到github上就会失败,push到bitbucket能成功。我猜是不是,之前我设置git config --global user.name leopardpangit config --global user.email panbaixin123@163.com导致两个远程创库配置问题,但是我安装都是根据github的name和email配置的啊。

请帮帮我,非常感谢!

问题解答

回答1:

git remote set-url origin https://leopardpan@github.com/leopardpan/blog.gitgit push origin master

相关文章: