Comment débarrasser la branche dans Git

git reset --merge <merge-commit-hash>
# or
git reset --hard <commit-before-merge>
Odd Owl