# 安装 Git

- 类型: MCP 工具
- 说明: 连接本地 Git 仓库，查看状态差异历史并安全暂存与提交更改。
- 仓库: https://github.com/Abhishekkumar2021/mcp-suite

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "Git" MCP 服务：
执行：claude mcp add 'io-github-abhishekkumar2021-git' -- npx -y @abhishekmcp/git
```

### Codex
```
请帮我安装 askskill 上的 "Git" MCP 服务：
在 ~/.codex/config.toml 中添加：
[mcp_servers.io-github-abhishekkumar2021-git]
command = "npx"
args = ["-y","@abhishekmcp/git"]
然后重启 Codex 生效
```

### Cursor
```
请帮我安装 askskill 上的 "Git" MCP 服务：
在 .cursor/mcp.json 的 "mcpServers" 中添加：
"io-github-abhishekkumar2021-git": { "command": "npx", "args": ["-y","@abhishekmcp/git"] }
然后在 Cursor 设置 > MCP 中启用
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
claude mcp add --env GIT_ROOTS=YOUR_VALUE --env GIT_WRITABLE=YOUR_VALUE --transport stdio io-github-abhishekkumar2021-git -- npx -y @abhishekmcp/git
```
需要环境变量：GIT_ROOTS, GIT_WRITABLE

### Codex
```bash
codex mcp add --env GIT_ROOTS=YOUR_VALUE --env GIT_WRITABLE=YOUR_VALUE io-github-abhishekkumar2021-git -- npx -y @abhishekmcp/git
```
配置文件 ~/.codex/config.toml：
```toml
[mcp_servers.io-github-abhishekkumar2021-git]
command = "npx"
args = ["-y","@abhishekmcp/git"]

[mcp_servers.io-github-abhishekkumar2021-git.env]
GIT_ROOTS = "YOUR_VALUE"
GIT_WRITABLE = "YOUR_VALUE"
```
需要环境变量：GIT_ROOTS, GIT_WRITABLE

### Cursor
配置文件 .cursor/mcp.json：
```json
{
  "mcpServers": {
    "io-github-abhishekkumar2021-git": {
      "command": "npx",
      "args": [
        "-y",
        "@abhishekmcp/git"
      ],
      "env": {
        "GIT_ROOTS": "YOUR_VALUE",
        "GIT_WRITABLE": "YOUR_VALUE"
      }
    }
  }
}
```
一键安装：cursor://anysphere.cursor-deeplink/mcp/install?name=io-github-abhishekkumar2021-git&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBhYmhpc2hla21jcC9naXQiXSwiZW52Ijp7IkdJVF9ST09UUyI6IllPVVJfVkFMVUUiLCJHSVRfV1JJVEFCTEUiOiJZT1VSX1ZBTFVFIn19
需要环境变量：GIT_ROOTS, GIT_WRITABLE
