I've made some commits and then reverted them. How do I revert the revert? (After my revert there are other commits on the branch). If I remerge my branch into master I get already updated
because it already includes all of those commits I suppose.
* b1e0603 - other commit
* f835cec - Revert ""
* 68ffc84 - Revert ""
* da5795b - Revert ""
* 75ae2a0 - Revert ""
* 4e51f8f - Merge branch 'master'
|\
| * 58a6fe8 - commit
* | 205f2a2 - Merge branch 'on this branch are my commits that weere reverted'
|\ \
| |/
|/|
| * 425d6f3 - commit
* | 0efc0e9 - Merge branch 'on this branch are my commits that weere reverted'
Doing git revert 75ae2a0
ouputs conflicts. And there are like 10 reverts that I have to run. Should I just revert the merge (205f2a2)?
Thanks!