Move yeet to personal skills

This commit is contained in:
Andrew Ambrosino
2025-12-16 13:33:06 -08:00
parent 3f4a6f91c7
commit e02fd94a8a

View File

@@ -1,11 +0,0 @@
---
name: yeet
description: Automate branch+PR flow: if not already, create ambrosino/{description} branch, then stage+commit all, push, and open a gh PR with a concise summary.
---
# Yeet
- If on main/master/default, `git checkout -b "ambrosino/{description}"`; otherwise stay on the current branch.
- Confirm status `git status -sb`, then stage everything `git add -A`.
- Commit tersely with the description, e.g. `git commit -m "{description}"`.
- Push with tracking: `git push -u origin $(git branch --show-current)`.
- Open a PR: `gh pr create --fill --head $(git branch --show-current)` and edit title/body to reflect the description and the deltas.