I have two branches in repository: feature and master. I have merged master into feature and pushed result to remote feature branch:
g
If you execute the git revert, it will undo the merge, so I do not think the feature contains necessary changes. I will goes to the state before merge only with some additional git log. So you can freely merge it. But, if you do not want the additional git log, you can use git reset.
Check which is your wanted previous state:git log
git reset {commit-id-founded}
resolve your conflicts
merge again