Documentation
README
GitHub Pull Request Workflow
Complete guide for managing the PR lifecycle. gh first, git + curl
fallback.
Prerequisites
- Authenticated with GitHub (see
github-authskill) - Inside a git repository with a GitHub remote
1. Branch & Commit
# Create feature branch
git checkout -b feature/add-login
# Make changes, commit
git add -A
git commit -m "feat: add login endpoint"
# Push
git push -u origin feature/add-login
2. Create PR
This is the opening of the README. Read the full README on GitHub.