I was wondering how to sign(-s) off previous commits that I have made in the past in git?
-s
These days (starting with Git 2.13) you can generally do something like
git rebase --signoff HEAD~2
to add Signed-off-by footers to the last 2 commits (in this example).
Signed-off-by