GitHub Workflow with GitHub CLI (gh)
#GitHub CLI#GitHub#productivity#CLI
sudo pacman -S github-cli # Arch installationgh auth login # Authenticate onceEssential Repository Workflows
1. Create & Clone Repos
# Create new repo from terminalgh repo create
# Clone existing reposgh repo clone user/repo2. Issue Management
# Create issuegh issue create -t "Bug Fix" -b "Description" -l bug
# List open issuesgh issue list --state open
# Close issuegh issue close 1 --comment "Its's fixed."