I tried git push on my master branch, but it just shows that I have a new pull request. When I click on the new pull request, it takes me to the comparing changes view, but doesn't show any option to add those changes into repository. It only shows the changes I made:
When I entered the command
git push origin main
all files where added to my repository.
but when I do
git push origin master
it doesn't work. Why is that? I heard they are replacing master with main. So in the future are they going to remove master?

