Is there implementation of Git in pure Python?

后端 未结 3 963
甜味超标
甜味超标 2021-02-13 22:50

Is there implementation of Git in pure Python?

3条回答
  •  南方客
    南方客 (楼主)
    2021-02-13 23:19

    "git" is the name of a specific software package, not the name of a specification. There is only one "git", and it's mostly written in C.

    If you are looking for an interface to modify git repositories from a Python program, have a look at GitPython.

提交回复
热议问题