如何向索引添加某些内容,提交它,然后使用 dulwich 将 master 分支推送到指定的远程?
我怎样才能向索引添加一些东西,就像
git add .
然后
git commit -m "message"
使用德威一样
git push origin master
?
到目前为止,我已经找到了这个 http://www.samba .org/~jelmer/dulwich/apidocs/dulwich.index.Index.html 但它并没有说太多,不是吗?
谢谢
How can I add something to the index, as in
git add .
then
git commit -m "message"
then
git push origin master
using dulwich?
So far I've found this http://www.samba.org/~jelmer/dulwich/apidocs/dulwich.index.Index.html but it doesn't say much, does it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不是经过测试的答案,但它更接近推送部分:
此问题的变体正在我的代码中工作。
This is not a tested answer but it is closer on the push part:
A variation on this is working in my code.
在这种情况下,您不需要索引,而是需要存储库(索引是存储库的一部分)。 http://www.samba.org/~jelmer/dulwich /apidocs/dulwich.repo.Repo.html
像这样的东西应该有效:
In this case, you don't want the index but the repo (of which the index is a part). http://www.samba.org/~jelmer/dulwich/apidocs/dulwich.repo.Repo.html
Something like this should work: