How to solve some git push links failed

When using GIT to push GitHub to GitHub, the information is as follows.

Nowadays, many people will try the following commands to upload the current branch code to the master branch.
$ git push -u master of origin
But you still can’t solve the problem

The root cause of the errors is that the readme.md file on GitHub is not in the local code directory

The code can be combined with the following command:
git pull –rebase the main origin

Run the application at this time
payment gateway -u master origin
You can complete the code upload on github

Leave a Comment