Files

40 lines
1001 B
Markdown
Raw Permalink Normal View History

# gitcz
2025-11-27 16:41:52 +08:00
Go语言Git Commitizencommit规范工具
# 快速安装
2025-11-27 16:37:52 +08:00
```
2021-09-07 11:08:40 +08:00
go install github.com/xiaoqidun/gitcz@latest
2025-11-27 16:37:52 +08:00
```
# 编译安装
```
git clone https://github.com/xiaoqidun/gitcz.git
cd gitcz
go build gitcz.go
```
# 手动安装
2021-09-07 11:35:03 +08:00
1. 根据系统架构下载为你编译好的[二进制文件](https://aite.xyz/product/gitcz/)
2. 将下载好的二进制文件重命名为 gitcz 并保留后缀
3. 把 gitcz 文件移动到系统 PATH 环境变量中的目录下
4. windows 外的系统需使用 chmod 命令赋予可执行权限
# 使用说明
```shell script
# 添加文件到本地仓库
git add .
# 使用-amend参数可覆盖最近一次提交信息,等同于git commit --amend
# 使用-S参数可进行签署commit操作,等同于git commit -S
gitcz
# 推送文件到远程仓库
git push
```
# 规范文档
2025-11-27 16:43:27 +08:00
gitcz 使用 [angular git commit](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines) 规范