given the following git log, how do i add a file (which never existed in any commit) to commit B, so that this new file will appear in every other commit that A?
A --> B -----> D ------> F
\--> C --> E --/
In my attempts with git rebase --onto i did not succeed in not having to essentially duplicate every commit amending the contents but i am sure i am not approaching it using the full power of git. Any help?
Note: remote is fine to be forced, or even deleted and pushed again, that's not a worry.
Thanks a lot