-
Notifications
You must be signed in to change notification settings - Fork 1
GitHub CLI
Ihar Aliakseyeu edited this page Nov 16, 2022
·
4 revisions
Download and execute the installer for your operating system from the GitHub CLI public webpage
-
gh --version -
gh --help -
gh auth login
gh issue create --title "Fix magic8.py error" --body "The code for magic8.py uses the Python random library without importing it. This causes issues during runtime."
-
gh issue status -
solve the issue
git checkout -b <issue_branch_name>git add .git commit -a -m “Comment”git push --set-upstream origin <issue_branch_name>
-
gh pr create- Linking a pull request to an issue : in Body type [keyword] #[issue] → "Resolve #14 issue by adding header"