使用git push
命令推送仓库时报错:
remote: Permission to ouowo/xxx.git denied to ooahz.
fatal: unable to access 'https://github.com/ouowo/xxx.git/': The requested URL returned error: 403
原因:本机已保存github账号密码和当前上传的仓库账号密码不一致。
解决方法:指定远程仓库的用户名:
代码语言:javascript复制https://用户名@github.com/***/***.git
完整示例:
代码语言:javascript复制$ git remote add master https://用户名@github.com/***/***.git
然后在弹出的窗口按照提示输入github密码即可