nichenqin a6047c09ff feat(v2): add base APIs and lookup casting
Add base domain, repository, and HTTP handlers with playground base selection and creation UI, and improve lookup computed updates using db field metadata casting.
2026-01-14 22:35:24 +08:00

19 lines
475 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
description: Draft git commit command
---
# Draft git commit command
RUN git status --short
RUN git diff
RUN git diff --staged
RUN git log -5 --oneline
Analyze the changes and propose a concise commit title and body (12 sentences) that match repo style. If there are no changes, say so.
Add relevant untracked files and stage changes, then create the commit with the generated title and body using:
`git add -A`
`git commit -m "<title>" -m "<body>"`
Do NOT push.