nighthawk 0.2.0

AI terminal autocomplete — zero config, zero login, zero telemetry
Documentation
{
  "name": "git-flow",
  "description": "A collection of Git extensions to provide high-level repository operations for Vincent Driessen's branching model",
  "subcommands": [
    {
      "name": "init",
      "description": "Initialize a new git repo with support for the branching model",
      "options": [
        {
          "names": [
            "-d"
          ],
          "description": "Use default branch naming conventions"
        },
        {
          "names": [
            "-f"
          ],
          "description": "Force setting of gitflow branches, even if already configured"
        }
      ]
    },
    {
      "name": "feature",
      "description": "List all feature branches",
      "subcommands": [
        {
          "name": "start",
          "description": "Create a new feature branch",
          "args": [
            {
              "name": "name",
              "description": "The name of the new feature branch"
            }
          ]
        },
        {
          "name": "finish",
          "description": "Merge a feature branch into develop",
          "args": [
            {
              "name": "name",
              "description": "The name of the feature branch to finish"
            }
          ]
        },
        {
          "name": "publish",
          "description": "Push a feature branch to the remote repository",
          "args": [
            {
              "name": "name",
              "description": "The name of the feature branch to publish"
            }
          ]
        },
        {
          "name": "pull",
          "description": "Pull a feature branch from the remote repository",
          "args": [
            {
              "name": "origin",
              "description": "The name of the remote feature branch"
            },
            {
              "name": "name",
              "description": "The name of the local feature branch"
            }
          ]
        }
      ]
    },
    {
      "name": "release",
      "description": "List all release branches",
      "subcommands": [
        {
          "name": "start",
          "description": "Create a new release branch",
          "args": [
            {
              "name": "name",
              "description": "The name of the new release branch"
            }
          ]
        },
        {
          "name": "finish",
          "description": "Merge a release branch into develop",
          "args": [
            {
              "name": "name",
              "description": "The name of the release branch to finish"
            }
          ]
        }
      ]
    },
    {
      "name": "hotfix",
      "description": "List all hotfix branches",
      "subcommands": [
        {
          "name": "start",
          "description": "Create a new hotfix branch",
          "args": [
            {
              "name": "name",
              "description": "The name of the new hotfix branch"
            }
          ]
        },
        {
          "name": "finish",
          "description": "Merge a hotfix branch into develop",
          "args": [
            {
              "name": "name",
              "description": "The name of the hotfix branch to finish"
            }
          ]
        }
      ]
    },
    {
      "name": "support",
      "description": "List all support branches",
      "subcommands": [
        {
          "name": "start",
          "description": "Create a new support branch",
          "args": [
            {
              "name": "name",
              "description": "The name of the new support branch"
            }
          ]
        }
      ]
    }
  ]
}