DEV Community

Discussion on: Git: Fixing Unsigned GPG Commits

Collapse
 
mrsauravsahu profile image
Sahu, S • Edited

Nicely done. If you're sure you don't want to make any changes, just sign the commits, you can pass in the command in the git rebase command itself, something like,

git rebase -i <ref> --exec 'git commit --amend -S --no-edit'
Enter fullscreen mode Exit fullscreen mode