I have created a blank git repo in my git account and I am trying to push the code from my local machine to it using git bash. The commands that I have used are :
* https://github.com/DevanshiParekh/new-git-project.git
* git push -u origin master
I get the following error while doing so :
$ git push -u origin master
remote: Permission to DevanshiParekh/new-git-project.git denied to debo-prk.
fatal: unable to access 'https://github.com/DevanshiParekh/new-git-project.git/': The requested URL returned error: 403
Here is my config list:
user.name=DevanshiParekh
user.email=devanshiparekh63@gmail.com
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
filter.lfs.clean=git-lfs clean -- %f
color.ui=auto
$ git remote show origin
* remote origin
Fetch URL: https://github.com/DevanshiParekh/new-git-project.git
Push URL: https://github.com/DevanshiParekh/new-git-project.git
HEAD branch: (unknown)
Can someone help me resolve this error? Thanks in advance.