I want to revert my pull request changes in master protected brach which accept changes only through pull request
I tried
git revert -m 1 commit code
git checkout -b rollback_branch
git add .
git commit -m 'rollback'
git push
When I opened a new pull request from rollback
branch to master it says there are no changes in Diff tab.