2

在 git 命令行中,我们可以使用git commit -a.

我怎样才能使用德威做到这一点?

4

1 回答 1

1

在考虑提交的各种测试时,例如 中的那些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 的包装器,但它不提供开箱即用的任何一个功能。

于 2012-08-13T07:18:17.660 回答