I'm a beginner to GitHub.I need to send a pull request to the master branch. when i typed the code
git push origin master
It gives me the error
fatal: unable to access 'https://github.com/www-prolificme-com/mahawiki/': The requested URL returned error: 403
Updated

You mentioned you are trying to pull from git but the command is git push. Anyways, most probably you are getting this error because your repo url is not set locally.
git config --global user.name "John Doe" git config --list command to check whether your repo URL is setup or not.git remote set-url origin https://github.com/www-prolificme-com/mahawiki/git remote -v to verify if your url is setupgit add .git commit -m "your message"git push origin masterIf you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With