Git & PR cheatsheet¶
# Start work on a branch (prefix with your username)
git switch -c <you>/short-description
# Stage, commit, push
git add -p
git commit -m "docs: fix provisioning steps"
git push -u origin HEAD
# Keep up to date
git fetch origin
git rebase origin/main
PR flow (Azure DevOps)¶
- Push your branch.
- Open a PR into
main. wiki-ciruns: front-matter, links, templates, spellcheck.- Reviewer (page owner) approves.
- Merge → auto-publish to this site.
Auto-drafted PRs
PRs prefixed bot/ are AI-drafted from source changes. Review the diff and the cited sources before merging.