Token导航 LogoToken导航TokenDH.com
运维和基础设施敏感数据github未标认证来源可访问clear审计异常

git-multibranchgit 多分支

Agent Skill

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

总安装

888

周安装

37

GitHub Stars

93

下载量

296
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill git-multibranch

简介

git-multibranch 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中管理多分支项目状态。

  • 适用于多分支开发、版本协调或基础设施运维等场景。
  • 通过安装命令从指定仓库添加,功能细节以原始 README 为准。
  • 安装前建议确认维护状态与权限设置,防范潜在的命令执行风险。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Git Multi-Branch Deployment

Overview

This skill provides guidance for setting up Git-based deployment systems where multiple branches (e.g., main, dev) automatically deploy to different web server locations via post-receive hooks. It covers SSH configuration, Git repository setup, web server configuration, and automated deployment workflows.

Prerequisites Verification

Before starting, verify all required tools and configurations:

  • Check for required packages: git, openssh-server, sshpass (for testing), web server (nginx/apache)
  • Verify port availability for SSH (22) and HTTP/HTTPS (80/443)
  • Confirm user creation permissions
  • Set Git default branch name upfront: git config --global init.defaultBranch main

Approach: Step-by-Step Implementation

1. User and SSH Setup

Actions:

  • Create a dedicated Git user with home directory
  • Set password for SSH authentication
  • Configure SSH to allow password authentication

SSH Configuration Considerations:

  • Modify /etc/ssh/sshd_config settings: PasswordAuthentication yes, ChallengeResponseAuthentication yes
  • Consider additional settings that may interfere: UsePAM, KbdInteractiveAuthentication
  • Restart SSH service after configuration changes
  • Plan for SSH host key verification in testing (either pre-accept keys or handle StrictHostKeyChecking)

2. Git Repository Creation

Actions:

  • Create a bare Git repository in the Git user's home directory
  • Initialize with proper permissions
  • Create initial branches with content

Branch Setup Pattern:

1. Clone the bare repo to a temp location
2. Create initial commit on main branch
3. Create and populate additional branches (e.g., dev)
4. Push all branches to the bare repo

3. Web Server Configuration

Actions:

  • Create deployment directories for each branch (e.g., /var/www/main, /var/www/dev)
  • Set appropriate ownership and permissions for the Git user
  • Configure virtual hosts or server blocks for each deployment target
  • Handle SSL certificates if HTTPS is required

SSL Certificate Generation (self-signed):

  • Use openssl req with appropriate subject and SAN extensions
  • Configure web server to use the certificates with modern TLS protocols

4. Post-Receive Hook Creation

Actions:

  • Create executable post-receive hook in hooks/ directory of bare repo
  • Parse ref updates to determine which branch was pushed
  • Checkout appropriate branch to corresponding deployment directory

Hook Structure:

1. Read stdin for ref updates (oldrev newrev refname)
2. Parse branch name from refname
3. For each target branch, checkout to deployment directory using GIT_WORK_TREE

5. Service Configuration

Actions:

  • Start and enable required services (SSH, web server)
  • Configure services to start on boot if persistence is needed
  • Verify services are running and accessible

Verification Strategies

SSH Access Verification

  • Test SSH connection with password: sshpass -p <password> ssh -o StrictHostKeyChecking=no <user>@<host>
  • Verify Git operations over SSH work correctly

Git Operations Verification

  • Clone the repository via SSH
  • Create test commits and push to each branch
  • Verify pushes complete without errors

Deployment Verification

  • After each push, verify content appears in correct deployment directory
  • Test web server serves correct content for each branch/endpoint
  • Verify deployment completes within required time constraints

End-to-End Testing Pattern

1. Clone repository to fresh test directory
2. Make changes to branch content
3. Push changes
4. Immediately verify web endpoint reflects changes
5. Time the deployment if latency requirements exist

Common Pitfalls and Mistakes

Branch Naming Confusion

  • Problem: Git may default to master instead of main
  • Solution: Set git config --global init.defaultBranch main before creating repositories
  • Recovery: Rename branch with git branch -m master main if already created

SSH Configuration Incomplete

  • Problem: SSH connections fail despite configuration changes
  • Causes: Missing settings like UsePAM, KbdInteractiveAuthentication, or service not restarted
  • Solution: Verify all related SSH settings and restart sshd after changes

Host Key Verification Failures

  • Problem: SSH commands fail with host key verification errors
  • Solutions:

- Pre-accept host keys: ssh-keyscan -H <host> >> ~/.ssh/known_hosts - Use StrictHostKeyChecking=no for testing (document security implications)

Push Conflicts During Testing

  • Problem: Non-fast-forward errors when re-testing
  • Causes: Previous test data conflicts with new pushes
  • Solutions:

- Use fresh test directories for each test run - Force-push if appropriate: git push --force - Reset repository state between tests

Post-Receive Hook Issues

  • Problem: Hook doesn't execute or deployment fails silently
  • Causes: Hook not executable, wrong shebang, missing GIT_WORK_TREE
  • Verification: Add logging to hook, check permissions with ls -la hooks/

Service State Issues

  • Problem: Services not running or not starting on boot
  • Solution: Use systemctl enable for boot persistence, verify status before testing

Missing Prerequisites

  • Problem: Commands fail because required tools not installed
  • Solution: Check all prerequisites at the start, install missing packages before beginning setup

Edge Cases to Consider

Unhandled Branch Pushes

  • Decide behavior when branches other than configured ones are pushed
  • Document whether silent ignore, warning, or error is appropriate

Failed Deployments

  • Consider adding error handling in post-receive hooks
  • Decide on notification mechanism for deployment failures

Concurrent Pushes

  • Be aware of potential race conditions with simultaneous pushes
  • Consider adding locking mechanism for production environments

Permission Issues

  • Ensure Git user has write access to all deployment directories
  • Verify ownership after creating directories

Efficiency Recommendations

Reduce Repetition

  • Set environment variables for repeated SSH commands: export GIT_SSH_COMMAND='sshpass -p password ssh -o StrictHostKeyChecking=no'
  • Batch related operations into single shell invocations

Clean Testing

  • Use isolated test directories that don't accumulate artifacts
  • Clean up test repositories between runs

Command Availability

  • Verify command existence before using (e.g., command -v time before timing operations)
  • Have fallbacks ready (e.g., date +%s%3N instead of time)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

24.39%
按下载量换算72

Gemini CLI

23.51%
按下载量换算70

Codex

18.85%
按下载量换算56

Antigravity

12.72%
按下载量换算38

OpenCode

7.31%
按下载量换算22

windsurf

3.58%
按下载量换算11

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills