Command reference

Use commands with intent, not from memory alone.

For every command, explain what state it reads or changes, what evidence confirms success, and how you would recover from failure.

Git

git statusgit switch -c feature/namegit add .git commit -m "message"git pull --rebasegit push -u origin feature/name

Docker

docker build -t osb-web:local .docker imagesdocker run --rm -p 3000:3000 osb-web:localdocker psdocker logs <container>docker exec -it <container> sh

Terraform

terraform fmt -recursiveterraform initterraform validateterraform planterraform applyterraform output

Kubernetes

kubectl get nodeskubectl get pods -Akubectl describe pod <name>kubectl logs <pod>kubectl apply -f manifest.yamlkubectl rollout status deployment/<name>

Azure CLI

az loginaz account showaz group list -o tableaz acr list -o tableaz aks list -o tableaz monitor activity-log list --max-events 10