cli

module
v0.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 14, 2026 License: MIT

README

GitCode CLI

AI 操作指南

Go Version License Release

GitCode 命令行工具,为 GitCode 用户提供便捷的命令行操作体验。

文档导航

按角色建议从以下入口开始:

角色 入口
使用者 docs/README.md
开发者 spec/README.md
Codex / 代理 AGENTS.md
Claude CLAUDE.md

主要文档:

安装

从源码构建

前置要求:

  • Go 1.22+
# 克隆仓库(需要 git clone 才能获取版本信息)
git clone https://gitcode.com/gitcode-cli/cli.git
cd cli

# 方式一:使用 go build(推荐)
go build -o gc ./cmd/gc
# 安装
mkdir -p ~/.local/bin
mv gc ~/.local/bin/

# 方式二:使用 make build(带完整版本标签)
make build
# 安装
mkdir -p ~/.local/bin
mv bin/gc ~/.local/bin/

# 添加到 PATH
export PATH="$HOME/.local/bin:$PATH"

说明:

  • go builddebug.ReadBuildInfo() 自动获取 git commit 和构建时间(需要 git clone 源码)。
  • make build 使用 -ldflags 注入完整版本标签(如 v0.3.11-38-g1128f2b)。
Linux 包管理器

DEB (Debian/Ubuntu):

# 从 Releases 下载 .deb 包
wget https://gitcode.com/gitcode-cli/cli/releases/download/v0.5.0/gc_0.5.0_amd64.deb

# 安装
sudo dpkg -i gc_0.5.0_amd64.deb

RPM (RHEL/CentOS/Fedora):

# 从 Releases 下载 .rpm 包
wget https://gitcode.com/gitcode-cli/cli/releases/download/v0.5.0/gc-0.5.0-1.x86_64.rpm

# 安装
sudo rpm -i gc-0.5.0-1.x86_64.rpm
Wheel 包(跨平台,推荐)

从 Release 归档下载 wheel 包安装,内置全平台二进制(Linux x64/ARM、macOS Intel/Apple Silicon、Windows x64):

# 创建虚拟环境
python3 -m venv .venv
source .venv/bin/activate  # Linux/macOS
# .venv\Scripts\activate   # Windows

# 安装(一行命令)
pip install https://gitcode.com/gitcode-cli/cli/releases/download/v0.5.0/gitcode_cli-0.5.0-py3-none-any.whl

# Windows PowerShell 中推荐使用 gitcode,避免 gc 被内置 Get-Content 别名覆盖
gitcode version

说明:

  • wheel 会同时安装 gcgitcode 两个命令入口,功能相同。
  • Windows PowerShell 预置 gc 作为 Get-Content 别名;如果 gc version 被解析为读取文件,请改用 gitcode versiongc.exe versionpython -m gc_cli version
PyPI(备选)
# 创建虚拟环境
python3 -m venv .venv
source .venv/bin/activate  # Linux/macOS
# .venv\Scripts\activate   # Windows

# 安装
pip install gitcode-cli

# Windows PowerShell 中推荐使用 gitcode
gitcode version
预编译二进制文件

从 Release Assets 直接下载对应平台的二进制文件:

平台 文件
Linux x64 gc_<version>_linux_amd64.tar.gz
Linux ARM64 gc_<version>_linux_arm64.tar.gz
macOS Intel gc_<version>_darwin_amd64.tar.gz
macOS Apple Silicon gc_<version>_darwin_arm64.tar.gz
Windows x64 gc_<version>_windows_amd64.zip

下载地址: https://gitcode.com/gitcode-cli/cli/releases

解压后将二进制文件放到 PATH 目录:

# Linux/macOS
tar -xzf gc_*.tar.gz
mv gc ~/.local/bin/

# Windows
# 解压 zip 文件后,将 gc.exe 放到 PATH 目录
规划中的安装方式

以下安装方式正在开发中:

  • Homebrew (macOS/Linux)
  • Scoop (Windows)
  • Docker 镜像

快速开始

认证

方式一:设置环境变量(推荐)

# 设置 Token 环境变量
export GC_TOKEN="your_gitcode_token"

# 或使用备用变量名
export GITCODE_TOKEN="your_gitcode_token"

# 添加到 shell 配置文件(永久生效)
echo 'export GC_TOKEN="your_gitcode_token"' >> ~/.bashrc
source ~/.bashrc

方式二:交互式登录

# 交互式登录(需输入 Token)
gc auth login

# 非交互登录(从 stdin 读取 Token)
echo "YOUR_TOKEN" | gc auth login --with-token

当前版本认证优先级:

  1. GC_TOKEN
  2. GITCODE_TOKEN
  3. 本地登录配置

说明:

  • gc auth login 会将认证信息持久化到本地配置目录
  • 如果设置了环境变量,环境变量始终覆盖本地配置
  • gc auth logout 只清理本地配置,不会自动取消环境变量
  • 详细规则见 docs/AUTH.md

获取 Token:

  1. 登录 GitCode
  2. 进入 设置 -> 私人令牌
  3. 点击"生成新令牌",选择所需权限
  4. 复制生成的 Token

验证认证:

# 查看认证状态
gc auth status

详细命令行为和完整示例请查看 docs/COMMANDS.md

输出格式

gc 的只读命令继续以文本输出为默认体验,同时为脚本和代理保留稳定的结构化入口。

# 结构化输出
gc issue list -R owner/repo --json
gc issue list -R owner/repo --format json

# 常规文本与表格
gc issue list -R owner/repo --format simple
gc issue list -R owner/repo --format table

# 时间格式切换
gc issue list -R owner/repo --time-format absolute
gc issue list -R owner/repo --time-format relative

# 自定义模板输出
gc issue list -R owner/repo --template '{{range .}}#{{.Number}} {{.Title}}{{"\n"}}{{end}}'

issue viewpr view 的文本详情展示也会保持稳定布局,而 --json 仍然是面向机器调用的首选入口。

常见任务入口

最常用的起步命令:

# 查看仓库
gc repo view

# 创建 Issue
gc issue create --title "Bug report" --body "Description"

# 列出 Issues
gc issue list --state open

# 创建 PR
gc pr create --title "New feature" --base main

# 查看认证状态
gc auth status

完整命令说明、参数细节、平台限制和更多示例,请直接查看:

Shell 补全

# Bash
gc completion bash > /etc/bash_completion.d/gc
source ~/.bashrc

# Zsh
gc completion zsh > "${fpath[1]}/_gc"
source ~/.zshrc

# Fish
gc completion fish > ~/.config/fish/completions/gc.fish
source ~/.config/fish/config.fish

项目定位

当前仓库已经建立:

如果你要看完整规范、构建与发布规则、质量门禁和 AI 协作边界,请直接进入对应入口,不要仅依赖本 README。

补充说明:

  • docs/AI-GUIDE.md 只服务外部项目通过 AI 使用 gc
  • gitcode-cli 仓库内部 AI 开发请看 AGENTS.mdCLAUDE.mdspec/workflows/ai-local-development-workflow.md
  • issues-plan/PROGRESS.md 只作为阶段说明,不作为单个 issue / PR 的实时事实依据

开发

# 克隆仓库
git clone https://gitcode.com/gitcode-cli/cli.git
cd gitcode-cli

# 安装依赖
make deps

# 构建
make build

# 运行测试
make test

# 代码检查
make lint

# 运行
make run

贡献

欢迎贡献代码。开始前请查看 贡献指南spec/README.md

许可证

MIT License

致谢

本项目参考了 GitHub CLI 的设计与实现,感谢 GitHub 团队的开源贡献。

相关链接

Directories

Path Synopsis
Package api provides GitCode API client
Package api provides GitCode API client
cmd
gc command
Package main is the entry point for gitcode-cli
Package main is the entry point for gitcode-cli
Package git provides Git operations for gitcode-cli
Package git provides Git operations for gitcode-cli
internal
config
Package config provides configuration management for gitcode-cli
Package config provides configuration management for gitcode-cli
pkg
browser
Package browser provides utilities for opening URLs in a web browser
Package browser provides utilities for opening URLs in a web browser
cmd/auth
Package auth implements authentication commands
Package auth implements authentication commands
cmd/auth/login
Package login implements the auth login command
Package login implements the auth login command
cmd/auth/logout
Package logout implements the auth logout command
Package logout implements the auth logout command
cmd/auth/status
Package status implements the auth status command
Package status implements the auth status command
cmd/auth/token
Package token implements the auth token command
Package token implements the auth token command
cmd/commit
Package commit implements the commit command
Package commit implements the commit command
cmd/commit/comments
Package comments implements the commit comments command
Package comments implements the commit comments command
cmd/commit/comments/create
Package create implements the commit comments create command
Package create implements the commit comments create command
cmd/commit/comments/edit
Package edit implements the commit comments edit command
Package edit implements the commit comments edit command
cmd/commit/comments/list
Package list implements the commit comments list command
Package list implements the commit comments list command
cmd/commit/comments/listbysha
Package listbysha implements the commit comments list-by-sha command
Package listbysha implements the commit comments list-by-sha command
cmd/commit/comments/view
Package view implements the commit comments view command
Package view implements the commit comments view command
cmd/commit/diff
Package diff implements the commit diff command
Package diff implements the commit diff command
cmd/commit/patch
Package patch implements the commit patch command
Package patch implements the commit patch command
cmd/commit/view
Package view implements the commit view command
Package view implements the commit view command
cmd/help
Package help implements the help command with search and discovery features.
Package help implements the help command with search and discovery features.
cmd/issue
Package issue implements the issue command
Package issue implements the issue command
cmd/issue/close
Package close implements the issue close command
Package close implements the issue close command
cmd/issue/comment
Package comment implements the issue comment command
Package comment implements the issue comment command
cmd/issue/comment/edit
Package edit implements the issue comment edit command.
Package edit implements the issue comment edit command.
cmd/issue/comments
Package comments implements the issue comments command.
Package comments implements the issue comments command.
cmd/issue/create
Package create implements the issue create command
Package create implements the issue create command
cmd/issue/edit
Package edit implements the issue edit command
Package edit implements the issue edit command
cmd/issue/label
Package label implements the issue label command
Package label implements the issue label command
cmd/issue/list
Package list implements the issue list command
Package list implements the issue list command
cmd/issue/prs
Package prs implements the issue prs command
Package prs implements the issue prs command
cmd/issue/relations
Package relations implements the issue relations command.
Package relations implements the issue relations command.
cmd/issue/reopen
Package reopen implements the issue reopen command
Package reopen implements the issue reopen command
cmd/issue/view
Package view implements the issue view command
Package view implements the issue view command
cmd/label
Package label implements the label command
Package label implements the label command
cmd/label/create
Package create implements the label create command
Package create implements the label create command
cmd/label/delete
Package delete implements the label delete command
Package delete implements the label delete command
cmd/label/list
Package list implements the label list command
Package list implements the label list command
cmd/milestone
Package milestone implements the milestone command
Package milestone implements the milestone command
cmd/milestone/create
Package create implements the milestone create command
Package create implements the milestone create command
cmd/milestone/delete
Package delete implements the milestone delete command
Package delete implements the milestone delete command
cmd/milestone/edit
Package edit implements the milestone edit command
Package edit implements the milestone edit command
cmd/milestone/list
Package list implements the milestone list command
Package list implements the milestone list command
cmd/milestone/view
Package view implements the milestone view command
Package view implements the milestone view command
cmd/pr
Package pr implements the pr command
Package pr implements the pr command
cmd/pr/checkout
Package checkout implements the pr checkout command
Package checkout implements the pr checkout command
cmd/pr/close
Package close implements the pr close command
Package close implements the pr close command
cmd/pr/comment
Package comment implements the PR comment command
Package comment implements the PR comment command
cmd/pr/comments
Package comments implements the pr comments command
Package comments implements the pr comments command
cmd/pr/create
Package create implements the pr create command
Package create implements the pr create command
cmd/pr/diff
Package diff implements the pr diff command
Package diff implements the pr diff command
cmd/pr/edit
Package edit implements the pr edit command
Package edit implements the pr edit command
cmd/pr/list
Package list implements the pr list command
Package list implements the pr list command
cmd/pr/merge
Package merge implements the pr merge command
Package merge implements the pr merge command
cmd/pr/ready
Package ready implements the pr ready command
Package ready implements the pr ready command
cmd/pr/reopen
Package reopen implements the pr reopen command
Package reopen implements the pr reopen command
cmd/pr/reply
Package reply implements the pr reply command
Package reply implements the pr reply command
cmd/pr/review
Package review implements the pr review command
Package review implements the pr review command
cmd/pr/sync
Package sync implements the pr sync command.
Package sync implements the pr sync command.
cmd/pr/test
Package test implements the pr test command
Package test implements the pr test command
cmd/pr/view
Package view implements the pr view command
Package view implements the pr view command
cmd/release
Package release implements the release command
Package release implements the release command
cmd/release/create
Package create implements the release create command
Package create implements the release create command
cmd/release/delete
Package delete implements the release delete command
Package delete implements the release delete command
cmd/release/download
Package download implements the release download command
Package download implements the release download command
cmd/release/edit
Package edit implements the release edit command
Package edit implements the release edit command
cmd/release/list
Package list implements the release list command
Package list implements the release list command
cmd/release/upload
Package upload implements the release upload command
Package upload implements the release upload command
cmd/release/view
Package view implements the release view command
Package view implements the release view command
cmd/repo
Package repo implements repository commands
Package repo implements repository commands
cmd/repo/clone
Package clone implements the repo clone command
Package clone implements the repo clone command
cmd/repo/create
Package create implements the repo create command
Package create implements the repo create command
cmd/repo/delete
Package delete implements the repo delete command
Package delete implements the repo delete command
cmd/repo/fork
Package fork implements the repo fork command
Package fork implements the repo fork command
cmd/repo/list
Package list implements the repo list command
Package list implements the repo list command
cmd/repo/stats
Package stats implements the repo stats command
Package stats implements the repo stats command
cmd/repo/sync
Package sync implements the repo sync command.
Package sync implements the repo sync command.
cmd/repo/view
Package view implements the repo view command
Package view implements the repo view command
cmd/root
Package root implements the root command for gc
Package root implements the root command for gc
cmd/schema
Package schema exposes machine-readable command metadata.
Package schema exposes machine-readable command metadata.
cmd/version
Package version implements the version command
Package version implements the version command
cmdutil
Package cmdutil provides utilities for command implementation
Package cmdutil provides utilities for command implementation
iostreams
Package iostreams provides input/output stream management
Package iostreams provides input/output stream management

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL