Zsh Plugin: Github(gh)

Today

Description

Provides autocompletion for GitHub CLI commands for repository management, issues, and pull requests.
GitHub

Essential Commands

Repository Operations

Issues and Pull Requests

Advanced Commands

Workflow Management

Advanced PR Operations

Usage Examples

# Repository management
gh repo create myproject --public
gh repo clone user/repo
 
# Pull request workflow
gh pr create --title "New feature" --body "Description"
gh pr checkout 42
gh pr review --approve
gh pr merge --squash
 
# Issue management
gh issue create --title "Bug report"
gh issue list --state open