Sublime Forum

Possible to add an option to Merge's Push dropdown?

#1

I added a new command to force push more safely, and I was wondering if there’s a way to add that to the Push Options dropdown menu.

FWIW, this is the command I added:

{
    "caption": "Safe force push ",
    "command": "git",
    "args": {
      "argv": ["push", "--force-with-lease", "--force-if-includes"],
    },
  },
0 Likes

#2

Ah! I found the documentation for which menus can be extended, and it seems the Push menu isn’t one.

1 Like