SyntaxFix
Write A Post
Hire A Developer
Questions
Using the --rebase option worked for me.
--rebase
git pull <remote> <branch> --rebase
Then push to the repo.
git push <remote> <branch>
E.g.
git pull origin master --rebase
git push origin master