スキル一覧に戻る
him1231

git-workflow

by him1231

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

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 main with --no-ff when 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

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です