-
A1. 附录 A:Git 在其他环境中的使用
- A1.1 图形界面
- A1.2 Git 在 Visual Studio 中的使用
- A1.3 Git 在 Visual Studio Code 中的使用
- A1.4 Git 在 IntelliJ / PyCharm / WebStorm / PhpStorm / RubyMine 中的使用
- A1.5 Git 在 Sublime Text 中的使用
- A1.6 Git 在 Bash 中的使用
- A1.7 Git 在 Zsh 中的使用
- A1.8 Git 在 PowerShell 中的使用
- A1.9 总结
-
A2. 附录 B:将 Git 嵌入你的应用程序
-
A3. 附录 C:Git 命令
A2.4 附录 B:将 Git 嵌入你的应用程序 - go-git
go-git
如果你想将 Git 集成到用 Golang 编写的服务中,也可以使用纯 Go 库实现。该实现没有任何原生依赖,因此不易出现手动内存管理错误。它也对标准 Golang 性能分析工具(如 CPU、内存分析器、竞争检测器等)透明。
go-git 重点关注可扩展性、兼容性和对大多数底层 API 的支持,这些 API 文档在 https://github.com/go-git/go-git/blob/master/COMPATIBILITY.md 中有记录。
以下是用 Go API 的基本示例
import "github.com/go-git/go-git/v5"
r, err := git.PlainClone("/tmp/foo", false, &git.CloneOptions{
URL: "https://github.com/go-git/go-git",
Progress: os.Stdout,
})
只要你拥有一个 Repository
实例,就可以访问信息并对其进行修改
// retrieves the branch pointed by HEAD
ref, err := r.Head()
// get the commit object, pointed by ref
commit, err := r.CommitObject(ref.Hash())
// retrieves the commit history
history, err := commit.History()
// iterates over the commits and print each
for _, c := range history {
fmt.Println(c)
}
高级功能
go-git 有一些显著的高级功能,其中一个是可插拔存储系统,类似于 Libgit2 后端。默认实现是内存存储,速度非常快。
r, err := git.Clone(memory.NewStorage(), nil, &git.CloneOptions{
URL: "https://github.com/go-git/go-git",
})
可插拔存储提供了许多有趣的选项。例如,https://github.com/go-git/go-git/tree/master/_examples/storage 允许你在 Aerospike 数据库中存储引用、对象和配置。
另一个功能是灵活的文件系统抽象。使用 https://pkg.go.dev/github.com/go-git/go-billy/v5?tab=doc#Filesystem,可以轻松地以不同的方式存储所有文件,例如将所有文件打包成一个磁盘上的存档,或将所有文件保存在内存中。
另一个高级用例包括一个可微调的 HTTP 客户端,例如在 https://github.com/go-git/go-git/blob/master/_examples/custom_http/main.go 中找到的客户端。
customClient := &http.Client{
Transport: &http.Transport{ // accept any certificate (might be useful for testing)
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
},
Timeout: 15 * time.Second, // 15 second timeout
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse // don't follow redirect
},
}
// Override http(s) default protocol to use our custom client
client.InstallProtocol("https", githttp.NewClient(customClient))
// Clone repository using the new client if the protocol is https://
r, err := git.Clone(memory.NewStorage(), nil, &git.CloneOptions{URL: url})
进一步阅读
本书不涵盖 go-git 的所有功能。如果你想了解更多关于 go-git 的信息,可以在 https://pkg.go.dev/github.com/go-git/go-git/v5 中找到 API 文档,并在 https://github.com/go-git/go-git/tree/master/_examples 中找到一组用法示例。