merge conflict resolution - Removing directory from the entire history in git -
i'm working legacy project included in repository directory should have been ignored. contents of directory causing huge number of irrelevant conflicts while rebasing.
is there way remove directory history (as if had been gitignored beginning)?
you want git filter-branch
, rewrite every commit in branch.
beware break pulls (just rebase).
Comments
Post a Comment