---
description: Commit and push
allowed-tools: Bash
---

# 📤 Commit & Push

Commit current changes and push.

```bash
git add -A
git commit -m "message"
git push origin HEAD
```
