Git sign off previous commits?
To signoff the previous commit, use amend option: git commit –amend –signoff Since Git 2.13, you can use the –signoff rebase option to specify range of commits to signoff (credits to @sschuberth). Example to signoff last two commits: git rebase –signoff HEAD~2 To signoff multiple commits using Git prior to version 2.13, use filter-branch and … Read more