纯Python中是否有Git的实现?
答案 0 :(得分:13)
找到Dulwich:
德威是一个纯粹的Python 实现Git文件格式 和协议。
该项目以村庄命名 Git先生和夫人住在这里 Monty Python草图。
看起来像是一个低级库,API看起来并不友好,但有Github page
的教程答案 1 :(得分:2)
我知道这个问题相当陈旧,但我只是想我会为下一个人添加这个。接受的答案提到了德威,并提到它是相当低级的(这也是我的观点)。我发现gittle是一个围绕德威的高级包装器。它很容易使用。
$ pip install gittle
示例(取自项目' README.md):
from gittle import Gittle
repo_path = '/tmp/gittle_bare'
repo_url = 'git://github.com/FriendCode/gittle.git'
repo = Gittle.clone(repo_url, repo_path)
repo = Gittle.init(path)
# Get list of objects
repo.commits
# Get list of branches
repo.branches
# Get list of modified files (in current working directory)
repo.modified_files
# Get diff between latest commits
repo.diff('HEAD', 'HEAD~1')
# Stage single file
repo.stage('file.txt')
# Stage multiple files
repo.stage(['other1.txt', 'other2.txt'])
# Do the commit
repo.commit(name="Samy Pesse", email="samy@friendco.de", message="This is a commit")
repo = Gittle(repo_path, origin_uri=repo_url)
# Authentication with RSA private key
key_file = open('/Users/Me/keys/rsa/private_rsa')
repo.auth(pkey=key_file)
# Do pull
repo.pull()
repo = Gittle(repo_path, origin_uri=repo_url)
# Authentication with RSA private key
key_file = open('/Users/Me/keys/rsa/private_rsa')
repo.auth(pkey=key_file)
# Do push
repo.push()
# Create branch off master
repo.create_branch('dev', 'master')
# Checkout the branch
repo.switch_branch('dev')
# Create an empty branch (like 'git checkout --orphan')
repo.create_orphan_branch('NewBranchName')
# Print a list of branches
print(repo.branches)
# Remove a branch
repo.remove_branch('dev')
# Print a list of branches
print(repo.branches)
这些只是部分(再次从项目的README.md中提取),我认为这是最常见的用例。如果您需要更多,请自行查看项目。
答案 2 :(得分:0)
“git”是特定软件包的名称,而不是规范的名称。只有一个“git”,它主要是用C语言编写的。
如果您正在寻找从Python程序修改git存储库的界面,请查看GitPython。