how to add changes to all commit code example
Example 1: add changes to last commit
git add the_left_out_file
git commit --amend --no-edit
Example 2: added changes to a specific commit
git add <my fixed files>
git commit --fixup=OLDCOMMIT
git rebase --interactive --autosquash OLDCOMMIT^