git push origin main
To https://github.com/mehrdad7027R/minakan.git
! [rejected] main -> main (non-fast-forward)
error: failed to push some refs to 'https://github.com/mehrdad7027R/minakan.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
This error occurs when you are trying to push a branch to a remote repository, but the remote branch has been updated since you last pulled from it. To resolve this issue, you need to pull the latest changes from the remote repository before pushing your changes.
You can do this by running the following command:
git pull origin main
Once the pull is complete, you should be able to push your changes without any issues.