Quickly rewrite git repository history (filter-branch replacement)
Go to file
Elijah Newren 471e9d8684 filter-repo: rewrite to not use pyparsing in order to avoid memory madness
pyparsing sucks a whole file into memory at a time and then parses, which
is really bad in this case since the output from git-fast-export is huge.
I entered disk swapping madness pretty easily.  So, now I just do my own
manual parsing.

Signed-off-by: Elijah Newren <newren@gmail.com>
2019-02-09 14:42:21 -08:00
git-filter-repo filter-repo: rewrite to not use pyparsing in order to avoid memory madness 2019-02-09 14:42:21 -08:00