GitHub CLI commands for managing repositories and issues
/plugin marketplace add leobrival/topographic-studio-plugins/plugin install cli-toolkit@topographic-studio-pluginsConcise cheat-sheet of `gh` commands to manage repositories, issues, PRs and GitHub workflows. ## Authentication ### `gh auth login` Authenticate with GitHub. ## Repositories ### `gh repo create` Create a new repository. ### `gh repo clone` Clone a repository. ### `gh repo list` List repositories. ### `gh repo view` View repository details. ### `gh repo fork` Fork a repository. ## Issues ### `gh issue create` Create a new issue. ### `gh issue list` List repository issues. ### `gh issue view` View an issue. ### `gh issue close` Close an issue. ## P...