用python操作Git
使用第三方模块gitpython
安装
pip install gitpython
使用
from git import Repor = Repo("C:\\Users\\robert\\Desktop\\test") # 创建一个操作对象# git add 添加测试.txtr.index.add([r'C:\Users\robert\Desktop\test\添加测试.txt']) # git commit -m 'python 操作git'r.index.commit("python 操作git")# git branchr.branches # [, ]print([str(b) for b in r.branches]) # ['dev', 'list', 'master']# git tagr.tagsprint([ str(t) for t in r.tags]) # ['v0.0.1', 'v0.1']# 当前分支r.active_branch# 创建分支 git branch 分支名r.create_head('dev')# 克隆 git cloner.clone_from(url,to_path)# git tag -a v1.3 创建tagr.create_tag("v1.3")# git logr.iter_commits()print([str(i.message) for i in r.iter_commits()]) # 获取提交信息print([str(i.message) for i in r.iter_commits()]) # 查看提交的hash值# git push origin masterr.remote().push('master')# git pullr.remote().pull()
执行Git原生语句的方法
from git import Gitr = Git("C:\\Users\\robert\\Desktop\\test")# 执行原生语句r.execute('git log') print(r.execute('git log'))# 提交记录r.commit('-m 提交记录')# 切换分支r.checkout('master')