美文网首页python交流学习
Python 中的 Git 开发包 GitPython

Python 中的 Git 开发包 GitPython

作者: 78c40b03ee4e | 来源:发表于2019-03-07 20:35 被阅读0次

    前言

    GitPython 是一个 Python 库用来和 Git 资料库进行交互,提供各种级别的操作,例如高级的 git-porcelain 和低级的 git-plumbing.

    GitPython 提供了 Git 对象的抽象封装以简化数据的访问。

    示例代码:

    from git import *
    repo = Repo("/Users/mtrier/Development/git-python")
    assert repo.bare == False
    
    repo = Repo.init("/var/git/git-python.git", bare=True)
    assert repo.bare == True
    

    小编推荐一个学python的学习qun 740,3222,34
    无论你是大牛还是小白,是想转行还是想入行都可以来了解一起进步一起学习!裙内有开发工具,很多干货和技术资料分享!

    素材来源开源中国:侵删

    相关文章

      网友评论

        本文标题:Python 中的 Git 开发包 GitPython

        本文链接:https://www.haomeiwen.com/subject/ppohpqtx.html