← スキル一覧に戻る

git-push
by JohnGaros
⭐ 0🍴 0📅 2026年1月19日
SKILL.md
name: git-push description: | Multi-remote git push workflow for GitHub and Azure DevOps. Use when the user says "push to github", "push to azure", "push to origin", "push to secondary", "push to devops", "push to both", "sync remotes", or any variation requesting git push operations. Handles the azure-sync branch workflow that excludes .claude/, specs/, and CLAUDE.md from Azure.
Git Multi-Remote Push
Remotes
| Remote | Platform | Branch |
|---|---|---|
origin | GitHub | main (full repo) |
secondary | Azure DevOps | main (excludes .claude/, specs/, CLAUDE.md) |
Push Workflows
GitHub (origin)
git push origin main
Azure DevOps (secondary)
Azure excludes .claude/, specs/, and CLAUDE.md. Use the persistent azure-sync branch:
# Update azure-sync from main, remove excluded files, push
git checkout -B azure-sync main && \
git rm -r .claude CLAUDE.md specs 2>/dev/null || true && \
git commit -m "chore: sync to Azure (excludes .claude, CLAUDE.md, specs)" && \
git push secondary azure-sync:main --force && \
git checkout main --force
Both Remotes
# GitHub first
git push origin main
# Then Azure (filtered)
git checkout -B azure-sync main && \
git rm -r .claude CLAUDE.md specs 2>/dev/null || true && \
git commit -m "chore: sync to Azure (excludes .claude, CLAUDE.md, specs)" && \
git push secondary azure-sync:main --force && \
git checkout main --force
Pre-Push Checklist
- Check for uncommitted changes:
git status - If changes exist, commit them first (no AI metadata in commit messages)
- Then push
Commit Message Format
<type>(<scope>): <description>
Types: feat, fix, refactor, test, docs, chore
No AI metadata - no "Generated with Claude", no "Co-Authored-By: Claude", no emojis.
Intent Mapping
| User Says | Action |
|---|---|
| "push to github" / "push to origin" | git push origin main |
| "push to azure" / "push to secondary" | Use azure-sync workflow |
| "push to both" / "sync remotes" | Push to origin, then azure-sync workflow |
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です