在 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 的包装器,但它不提供开箱即用的功能。