gh-issue-develop - Man Page

Manage linked branches for an issue

Synopsis

gh issue develop {<number> | <url>} [flags]

Options

-b, --base <string>

Name of the base branch you want to make your new branch from

--branch-repo <string>

Name or URL of the repository where you want to create your new branch

-c, ā€‰--checkout

Checkout the branch after creating it

-l, ā€‰--list

List linked branches for the issue

-n, --name <string>

Name of the branch to create

Options Inherited from Parent Commands

-R, --repo <[HOST/]OWNER/REPO>

Select another repository using the [HOST/]OWNER/REPO format

Example

# List branches for issue 123
$ gh issue develop --list 123

# List branches for issue 123 in repo cli/cli
$ gh issue develop --list --repo cli/cli 123

# Create a branch for issue 123 based on the my-feature branch
$ gh issue develop 123 --base my-feature

# Create a branch for issue 123 and checkout it out
$ gh issue develop 123 --checkout

# Create a branch in repo monalisa/cli for issue 123 in repo cli/cli
$ gh issue develop 123 --repo cli/cli --branch-repo monalisa/cli

See Also

gh-issue(1)

Referenced By

gh-issue(1).

Mar 2024 GitHub CLI manual