I read various answers over Stackoverflow but none helped.
Here's the situation. I cloned a public repo and made a new branch and then commit my changes in the branch and now I want to push the branch.
(base) mona@goku:~/research/summer2020/synthetic-computer-vision$ git push -u origin master sidod
Username for 'https://github.com': monajalal
Password for 'https://[email protected]':
remote: Permission to unrealcv/synthetic-computer-vision.git denied to monajalal.
fatal: unable to access 'https://github.com/unrealcv/synthetic-computer-vision.git/': The requested URL returned error: 403
here's the result of:
$ git config --list
credential.helper=osxkeychain
user.name=Mona Jalal
[email protected]
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
core.precomposeunicode=true
remote.origin.url=https://github.com/unrealcv/synthetic-computer-vision.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
I created a new RSA and pasted it to my git setting after deleting the old one. I even deleted the entries of git in the keychain access:
How can I fix this?
other information:
$ git status
On branch sidod
nothing to commit, working tree clean
$ git --version
git version 2.24.3 (Apple Git-128)
$ git branch
master
* sidod
I am using OSX 10.15.2
Here is the public git repo I have cloned: https://github.com/unrealcv/synthetic-computer-vision


