In order to do it locally, you can do the following commands to go to master and move it to the old commit.
git checkout master
git reset --hard <old_commit_id>
If you then want to push it to the remote, you need to use the -f
option.
git push -f origin master