Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计通过

pushpush 命令行

Agent Skill

push 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

198

周安装

8

GitHub Stars

61

下载量

62
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:push(push 命令行)
来源仓库:https://github.com/melodic-software/claude-code-plugins
仓库路径:skills/push
安装命令:
npx skills add https://github.com/melodic-software/claude-code-plugins --skill push
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill push

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合围绕代码变更、仓库状态和协作事项进行整理。
  • 建议结合原始 README 了解具体操作流程。
  • 安装前需确认权限范围、维护状态及是否会触发网络请求。
  • push 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Git Push

Comprehensive guidance for Git push operations, from basic pushes to force push safety protocols and remote management.

Overview

This skill provides complete guidance for Git push operations, emphasizing safety protocols (especially for force pushes), remote management, and troubleshooting common push scenarios. It complements the git-commit skill (which handles commit creation) by focusing exclusively on push operations and remote synchronization.

When to Use This Skill

This skill should be used when:

  • Pushing commits - Basic push operations to remote repositories
  • Force pushing - Rewriting history with safety protocols (force-with-lease)
  • Pushing tags - Annotated tags, lightweight tags, tag workflows
  • Managing remotes - Adding, removing, renaming, configuring remote repositories
  • Troubleshooting pushes - Rejected pushes, conflicts, authentication issues
  • Upstream configuration - Setting up tracking branches, push.autoSetupRemote
  • Branch protection - Understanding protected branches and push restrictions

Trigger keywords: push, force push, force-with-lease, remote, upstream, tracking branch, rejected push, push --force, git push origin, push tags, remote add

Prerequisites

This skill assumes:

  • Git is installed (verify with git --version)
  • Repository initialized (local repo with .git/ directory)
  • Remote configured (typically origin for GitHub/GitLab/Bitbucket)
  • Basic Git knowledge (commits, branches, remotes)

For Git installation help, see the setup skill.

Quick Start

Basic Push

# Push current branch to remote (if upstream is configured)
git push

# Push and set upstream for first-time push
git push -u origin feature-branch

# Push specific branch to remote
git push origin main

Safe Force Push

# Safe force push (recommended - only overwrites if no one else pushed)
git push --force-with-lease

# Safest force push (recommended for maximum safety)
git push --force-with-lease --force-if-includes

# Force-with-lease for specific branch
git push --force-with-lease origin feature-branch

Push Tags

# Push specific tag
git push origin v1.0.0

# Push all tags
git push --tags

# Push commits + annotated tags pointing to them
git push --follow-tags

Core Capabilities

1. Basic Push Operations

Push local commits to remote repositories for collaboration and backup.

Essential commands:

# Push current branch (upstream must be configured)
git push

# Push and set upstream (first-time push)
git push -u origin feature-branch

# Push specific branch
git push origin main

# Dry run (preview without pushing)
git push --dry-run

📖 For detailed configuration: See references/push-configuration.md for upstream setup, push strategies, and advanced options.


2. Force Push Safety Protocols

Rewrite remote history safely when necessary (after rebasing, amending, or squashing commits).

CRITICAL SAFETY RULES:

  • ONLY force push on feature branches (your personal work)
  • ALWAYS use --force-with-lease (not --force)
  • NEVER force push to main/master/develop (shared branches)
  • NEVER force push if others are working on the same branch

Safe force push commands:

# ✅ SAFE: Only overwrites if no one else pushed since your last fetch
git push --force-with-lease

# ✅ SAFEST: Maximum safety with force-if-includes
git push --force-with-lease --force-if-includes

📖 For comprehensive safety guidance: See references/force-push-safety.md for detailed safety protocols, pre-push checklist, recovery procedures, and branch protection.


3. Tag Pushing

Push version tags to remote for releases and milestones.

Quick commands:

# Create and push annotated tag (recommended for releases)
git tag -a v1.0.0 -m "Release version 1.0.0"
git push origin v1.0.0

# Push all tags
git push --tags

# Push commits + annotated tags (recommended)
git push --follow-tags

📖 For complete tag workflows: See references/tag-pushing.md for tag types, strategies, aliases, and best practices.


4. Remote Management

Configure and manage remote repositories for push/fetch operations.

Quick commands:

git remote -v                    # List remotes
git remote add origin <url>      # Add remote
git remote set-url origin <url>  # Change URL
git remote rename origin upstream # Rename remote

📖 For detailed remote management: See references/remote-management.md for configuration, fork workflows, and credential management.


5. Troubleshooting Push Issues

Diagnose and resolve common push failures and conflicts.

Common issues - quick fixes:

# Rejected push (non-fast-forward)
git pull --rebase && git push

# Authentication failure
ssh -T git@github.com  # Test SSH
git remote set-url origin git@github.com:username/repo.git

# Protected branch
git switch -c feature-branch
git push -u origin feature-branch

📖 For comprehensive troubleshooting: See references/troubleshooting.md for detailed diagnosis and solutions.


Common Workflows

Feature Branch Development

git switch -c feature/user-auth
git commit -m "feat(auth): implement authentication"
git push -u origin feature/user-auth  # First push sets upstream
git push  # Subsequent pushes

Rebase and Force Push

git fetch origin
git rebase origin/main
git push --force-with-lease  # Safe force push

Hotfix to Production

git switch main && git pull
git switch -c hotfix/critical-bug
git commit -m "fix: resolve critical bug"
git push -u origin hotfix/critical-bug
gh pr create --title "HOTFIX: ..."

📖 For additional workflows: See references/workflows.md for fork contribution, release tagging, and complex multi-remote scenarios.


Best Practices

Critical Safety Rules:

  • ✅ Always use --force-with-lease (not --force)
  • ✅ Never force push to main/master/develop
  • ✅ Verify no sensitive data before pushing
  • ✅ Run tests before pushing (don't push broken code)

Push Frequency:

  • ✅ Push daily for backup and collaboration
  • ✅ Push after completing logical units of work
  • ❌ Don't push broken code or sensitive data

📖 For comprehensive best practices: See references/best-practices.md for safety protocols, security, collaboration guidelines, and advanced scenarios.


References

Detailed Guides:

Related Skills:

  • git-commit - Commit creation, commit messages, PR workflows
  • config - Git configuration, aliases, credential management
  • line-endings -.gitattributes, Git LFS setup

Test Scenarios

Scenario 1: Basic feature branch push

Query: "I made some commits on my feature branch. How do I push them to the remote?"

Expected Behavior:

  • Skill activates on "push", "feature branch", "commits", "remote"
  • Provides basic push command with upstream setup
  • Explains -u flag for first-time push

Scenario 2: Force push after rebase

Query: "I rebased my feature branch onto main. Now push is rejected. What do I do?"

Expected Behavior:

  • Skill activates on "rebase", "push", "rejected"
  • Explains why push is rejected (history rewritten)
  • Recommends git push --force-with-lease with safety explanation
  • Provides pre-force-push checklist

Scenario 3: Push tags for release

Query: "How do I push my v1.0.0 tag to GitHub?"

Expected Behavior:

  • Skill activates on "push", "tag", "v1.0.0", "release"
  • Provides specific tag push command
  • Explains difference between pushing single tag vs all tags

Scenario 4: Rejected push due to remote changes

Query: "My push was rejected with a message about non-fast-forward. What does that mean?"

Expected Behavior:

  • Skill activates on "push", "rejected", "non-fast-forward"
  • Explains cause (someone else pushed first)
  • Provides solution options (fetch+merge, fetch+rebase, pull --rebase)

Scenario 5: Managing multiple remotes

Query: "I forked a repository. How do I push to my fork but pull from the original?"

Expected Behavior:

  • Skill activates on "fork", "push", "pull", "remote"
  • Explains fork workflow with upstream remote
  • Provides commands to add upstream remote

Multi-Model Testing Notes

Tested with:

  • Claude Sonnet 4.5: ✅ VERIFIED - Skill activates correctly on all trigger keywords, provides comprehensive push guidance, handles force push safety protocols effectively. Progressive disclosure works well with references loaded on-demand.
  • Claude Haiku 3.7: 🔄 PENDING TESTING - Need to verify: (1) Skill activation reliability, (2) Force push safety guidance clarity, (3) Progressive disclosure effectiveness.
  • Claude Opus 3.7: 🔄 PENDING TESTING - Need to verify: (1) Skill activation, (2) Depth of troubleshooting guidance, (3) Reference file loading behavior.

Observations:

  • Strong trigger keywords ("push", "force push", "remote", "tag", "rejected", "upstream") work well across models
  • Force push safety protocols clearly articulated with visual warnings
  • Progressive disclosure implemented: Main file reduced to ~400 lines, detailed content in references/

Last Updated: 2025-11-28

Version History

  • v1.0.0 (2025-12-26): Initial release

Audit Status: ✅ PASS (Type A Standard Skill) Content Validation: All technical claims verified against git-scm.com, Perplexity, Microsoft Learn via MCP servers

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

trae

32.57%
按下载量换算20

Antigravity

22.27%
按下载量换算14

windsurf

20.27%
按下载量换算13

Claude Code

12.3%
按下载量换算8

Codex

7.71%
按下载量换算5

Gemini CLI

3.39%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills