mirror of
https://github.com/teableio/teable.git
synced 2026-02-06 13:37:12 +08:00
Add base domain, repository, and HTTP handlers with playground base selection and creation UI, and improve lookup computed updates using db field metadata casting.
19 lines
475 B
Markdown
19 lines
475 B
Markdown
---
|
||
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 (1–2 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.
|