在 git 命令行中,我们可以使用git commit -a
.
我怎样才能使用德威做到这一点?
在考虑提交的各种测试时,例如 中的那些test_repository.py
,似乎不可能在一行中进行:
r.stage(['a'])
commit_sha = r.do_commit('modified a',
committer='Test Committer <test@nodomain.com>',
author='Test Author <test@nodomain.com>',
commit_timestamp=12395, commit_timezone=0,
author_timestamp=12395, author_timezone=0)
在调用提交之前,您需要先找到修改或删除的文件,并将它们暂存。
另一种选择是使用git-python,它是 git 的包装器,但它不提供开箱即用的任何一个功能。