My remote is configured not to accept non-fast-foward commits.
The remote version is completely different from my local version. I want to override it. I dont want to merge or rebase anything. Moreover, my local repository started as a clean git init, not pulling from the server.
I did git push origin master --f but I get
remote: error: denying non-fast-forward refs/heads/master (you should pull first) I dont want to pull because it will merge with my version and I dont want.
What's the right procedure to follow?
--fbe the error?