https://github.com/xuxiaowei-com-cn/go-gitlink
https://github.com/xuxiaowei-com-cn/go-gitlink
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/xuxiaowei-com-cn/go-gitlink
- Owner: xuxiaowei-com-cn
- License: apache-2.0
- Created: 2023-11-27T06:54:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-24T22:12:02.000Z (10 months ago)
- Last Synced: 2025-01-04T18:33:28.478Z (4 months ago)
- Language: Go
- Size: 152 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG/README.md
- License: LICENSE
Awesome Lists containing this project
README
基于 go 语言的 gitlink SDK
为简化开发工作、提高生产率、解决常见问题而生## [更新文档](CHANGELOG)
## 使用方式
1. 获取依赖
```shell
# 请使用 v2 版本的依赖
go get -u github.com/xuxiaowei-com-cn/go-gitlink/v2
```
2. 具体示例请查看对应的测试方法## 开发命令
### get
```shell
go env -w GOPROXY=https://goproxy.cn,direct
# go env -w GOPROXY=https://mirrors.aliyun.com/goproxy,direct
go get -u github.com/google/go-querystring
go get -u github.com/hashicorp/go-cleanhttp
go get -u github.com/hashicorp/go-retryablehttp
go get -u github.com/stretchr/testify
```### mod
```shell
go mod tidy
``````shell
go mod download
```### test
```shell
go test ./... -v
```