zet

Beauty of GitHub CLI tool (gh) workflow

Since discovering gh issue develop -c I never do anything else when working on a PR. The workflow is just so wonderful:

gh issue create

Create a branch and check it out for the work

gh issue develop -c NUM

Commit each small logical change and push to branch

git commit ...
git push

Create a PR and add reviewer(s)

gh pr create

Close the PR with a “squash and merge” after review

gh pr close