cherrypick-interactive 1.14.7 → 1.14.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cli.js +1 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -1689,7 +1689,7 @@ async function ensureReleaseBranchFresh(branchName, startPoint) {
1689
1689
 
1690
1690
  if (remoteExists) {
1691
1691
  try {
1692
- await gitRaw(['push', 'origin', '--delete', branchName]);
1692
+ await gitRaw(['push', 'origin', '--delete', branchName, '--no-verify']);
1693
1693
  log(chalk.yellow(`↷ Deleted existing remote branch origin/${branchName}`));
1694
1694
  } catch (e) {
1695
1695
  err(chalk.red(`Failed to delete remote branch origin/${branchName}: ${e.message || e}`));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cherrypick-interactive",
3
- "version": "1.14.7",
3
+ "version": "1.14.8",
4
4
  "description": "Interactively cherry-pick commits that are in dev but not in main, using subject-based comparison.",
5
5
  "main": "cli.js",
6
6
  "bin": "cli.js",