Having done a git rebase on my local repo, and then done a forced update on the remote repo, I needed to copy the remote repo to my live website. I achieved this, after reading this thread on Stack Exchange.
git fetch --all
git reset --hard origin/master
Now my history on the website matches the history on the remote master.