Compact all commits in a GitHub PR into a single commit with comprehensive message and DCO sign-off
Compacts multiple PR commits into a single signed commit with comprehensive message.
/plugin marketplace add yanmxa/cc-plugins/plugin install git@cc-pluginspr_numberCompact multiple commits in a GitHub Pull Request into a single commit while preserving all changes and creating a comprehensive commit message with proper DCO sign-off.
gh pr view $1gh pr checkout $1 to work with the commits locallygit reset --soft HEAD~N (where N is number of commits) to stage all changes from multiple commits, then create a single comprehensive commit with git commit --signoffgit push --force-with-lease to update the remote PR--force-with-lease for safer force pushing