# 简单GO项目示例 **Repository Path**: chazzorg/simple-git-todo-example ## Basic Information - **Project Name**: 简单GO项目示例 - **Description**: 基于 Git 分支的简单待办事项管理工具,作为 `git todo` 子命令使用。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-17 - **Last Updated**: 2025-10-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # git-todo 基于 Git 分支的简单待办事项管理工具,作为 `git todo` 子命令使用。 ## 构建 ```bash go build -o git-todo ``` 将生成的可执行文件放入 `PATH`(例如 `/usr/local/bin`),即可通过 `git todo ` 访问。 ## 使用示例 ```bash git todo add "实现登录接口" git todo list git todo edit "调整接口返回值" git todo done git todo del ``` 任务数据保存在 `.git/todo-data.json` 中,并按分支隔离。