dulwich

    3熱度

    2回答

    我想知道如何執行相當於git status與德威? 我嘗試這樣做: 添加/更改/重命名了一些文件和分期他們提交後,這是我試着做: from dulwich.repo import Repo from dulwich.index import changes_from_tree r = Repo('my-git-repo') index = r.open_index() changes =

    2熱度

    1回答

    在git命令行中,我們可以使用git commit -a。 如何使用德威公司做到這一點?

    5熱度

    2回答

    如何在python dulwich庫中做類似git pull的操作。

    4熱度

    1回答

    顯然repo.do_commit(message ='test commit',committer ='Name')只承諾refs/heads/master。 有沒有辦法將當前提交ref設置爲refs/heads/master? 或者是通過創建一個Commit對象(如文檔中的教程所示)並將父項設置爲分支中的一個commit id來提交分支的唯一方法? 如果這是真的,那麼使用repo.do_comm

    2熱度

    2回答

    我如何使用德威在 git add . 然後 git commit -m "message" 然後 git push origin master 添加一些指標,如? 到目前爲止,我找到了這個http://www.samba.org/~jelmer/dulwich/apidocs/dulwich.index.Index.html,但它不會說太多,是嗎? 感謝