List of Github cli commands

Search for a command to run...

No comments yet. Be the first to comment.
As a developer portfolio is best place to Showcase skill, work and Achievements and It's is really valuble for your career. So we need to keep Portfolio updated and Updating portfolio is frustrating, right? So, we've got you covered We are happy to a...

Hello 👋 I am happy to announce my latest project Vdev (A portfolio and resume generator) vdev.in Vdev generate Your portfolio based on info you filled in form and Show your info in a nice-way Here is demo of generated Portfolio Here is demo of resu...

Customize Global npm init default values for next project

Git Commands A list of Git commands feel free to star this Tell Git who you are DescriptionCommand Configure the author name.git config --global user.name "<username>" Configure the author email address.git config --global user.email <email...

feel free to star this

| Description | Command |
| Initialize a Github repository [default private] | gh repo create <name> |
| Initialize a Github public repository | gh repo create <name> --public |
| Create a local copy of a remote repository | gh repo clone <repository-name> or gh repo clone https://github.com/<username>/<repository-name> |
| Create a fork for the current repository | gh repo fork |
| Description | Command |
| Check status | gh pr status |
| Create a pull request | gh pr create |
| Quickly navigate to the pull request creation page | gh pr create --web |
| list of open pull requests | gh pr list |
| View a pull request | gh pr view |
| Description | Command |
| Create a new issue | gh issue create |
| Create an issue using flags | gh issue create --title "Issue title" |
| list of open issues | gh issue list |
| list of closed issues | gh issue list --state closed |
| Show status of relevant issues | gh issue status |
| View an issue | gh issue view {<number> / <url>} |