スキル一覧に戻る
kprsnt2

git-workflow

by kprsnt2

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

SKILL.md


name: git-workflow description: Git best practices and workflows including conventional commits, branching strategies, and collaboration patterns. globs: ["/.git/", "/.gitignore", "/.gitattributes"] alwaysApply: ["/CONTRIBUTING.md", "/CHANGELOG.md"] priority: 80 tags: ["workflow"]

Git Workflow Best Practices

Commit Messages (Conventional Commits)

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation
  • style: Formatting
  • refactor: Code restructuring
  • test: Adding tests
  • chore: Maintenance

Format: type(scope): description Example: feat(auth): add password reset flow

Branch Naming

  • feature/TICKET-description
  • fix/TICKET-description
  • hotfix/description
  • release/v1.0.0
  • docs/description

Workflow

  • Keep commits atomic and focused
  • Rebase feature branches on main
  • Squash WIP commits before merge
  • Never force push to shared branches
  • Use pull request templates
  • Require code reviews

.gitignore

  • Ignore build artifacts
  • Ignore node_modules, venv, target
  • Ignore local config (.env.local)
  • Ignore IDE settings (.idea, .vscode)
  • Ignore OS files (.DS_Store)

Advanced

  • Use git hooks with husky/pre-commit
  • Sign commits with GPG
  • Use git-crypt for secrets
  • Bisect for finding bugs

スコア

総合スコア

60/100

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

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

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