bundy

* Modular * Extensible * Friendly *

[Bundy-hackers] Accidentally merged "issue13" branch

Tomek Mrugalski tomasz at isc.org
Thu May 15 14:04:31 CEST 2014


On 15/05/14 13:58, Carsten Strotmann wrote:
> Can anyone with git knowledge/experience tell me if it is possible to
> "undo" such an accidental merge?
git revert id-of-the-commit-you-want-to-get-rid-of

This will create an inverse commit that will undo your commit. There
will still be a trace in the git history, but that's ok.

Tomek