GitPython 是一个用于操作 Git 版本库的 python 包,
它提供了一系列的对象模型(库 - Repo、树 - Tree、提交 - Commit等)
用于操作版本库中的相应对象。
安装
1 | pip install GitPython |
##版本库对象 - Repo
0x01 初始化仓库
1 | from git import Repo |
0x02 创建版本库对象
1 | repo = git.Repo(r'E:\Notes') |
0x03 操作
1 | # 版本库是否为空版本库 |
GitPython 是一个用于操作 Git 版本库的 python 包,
它提供了一系列的对象模型(库 - Repo、树 - Tree、提交 - Commit等)
用于操作版本库中的相应对象。
1 | pip install GitPython |
##版本库对象 - Repo
1 | from git import Repo |
1 | repo = git.Repo(r'E:\Notes') |
1 | # 版本库是否为空版本库 |