Replies: 3 comments 1 reply
-
I don't know anything about yoru Lemontree Automation, but I'm going to assume that your Lemontree Automation command to convert the contents of one eapx file (without renaming it) is the following:
My four flags are probably wrong, but you can insert whatever the appropriate flags are. If your program hardcodes that the filenames have to change, then write a script around it that calls the conversion script and then renames back. Anyway... I think I'd probably do this conversion in two steps. First, I'd use the lint-history script to convert the contents (while keeping the filenames the same):
Then, after the contents have been converted, do another history conversion that renames the files. That should look something like:
|
Beta Was this translation helpful? Give feedback.
-
What shell are you using? Any chance you are using powershell? There are some reports (e.g. #435) saying that powershell is broken and cannot handle the outer quote being a |
Beta Was this translation helpful? Give feedback.
-
The new --file-info-callback would allow you to do all the filtering in a single invocation of git-filter-repo (and not need to use lint-history any more). Not sure if that's easier or harder for you; just thought I'd mention it as an option. |
Beta Was this translation helpful? Give feedback.
-
``Long story short, I have a repository with a bunch of commits containing a single .eapx file that I need to convert to .qeax.
Using an .exe called Lemontree Automation, my goal is to go commit by commit converting this .eapx to .qeax. I know how to do the conversion part, what I don't know how to do is iterate through each commit on each branch, dump the old .eapx file, and add the .qeax file. Anyone have insight on the iteration, removing, and adding pieces below?
The goal is this:
Beta Was this translation helpful? Give feedback.
All reactions