← Back to list

git-workflow
by him1231
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: git-workflow description: Git workflow automation for creating feature branches, committing, pushing, merging to main, and pushing main. Use when asked to do git branch/commit/push/merge steps or "one command" release.
Git Workflow Automation
When to Use
- Requests to create a feature branch
- Commit and push changes
- Merge into
main - One-command or scripted git workflows
Core Patterns
- Use a descriptive branch name (feature/..., fix/..., chore/...)
- Stage changes with
git add -A - Commit with a concise message
- Push feature branch to
origin - Merge into
mainwith--no-ffwhen possible - Push
main
Safety Checks
- Ensure the working tree is clean before merging
- Fail early on conflicts
- Do not force-push unless explicitly requested
Example
cd /path/to/repo && \
git checkout -b feature/your-branch && \
git add -A && \
git commit -m "Describe change" && \
git push -u origin HEAD && \
git checkout main && \
git merge --no-ff feature/your-branch && \
git push origin main
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon