Signatures #
So you make a commit and pushed it to GitHub, then realized you forgot to sign it. fix it with git rebase HEAD~N --signoff. where N is the number of recent commits you need to sign.
git pull
git rebase HEAD~1 --signoff
git push --force
So you make a commit and pushed it to GitHub, then realized you forgot to sign it. fix it with git rebase HEAD~N --signoff. where N is the number of recent commits you need to sign.
git pull
git rebase HEAD~1 --signoff
git push --force