dulwich Questions

2

Solved

I couldn't find any resource on this topic. I need to clone from a private repository by providing the username and the password. However when they are provided as keyword arguments to 'dulwich.get...
Winkler asked 22/1, 2015 at 19:17

4

Solved

Having this code from dulwich.objects import Blob, Tree, Commit, parse_timezone from dulwich.repo import Repo from time import time repo = Repo.init("myrepo", mkdir=True) blob = Blob.from_string(...
Liponis asked 10/7, 2011 at 10:28

11

Solved

I'm trying to use the hg-git Mercurial extension on Windows (Windows 7 64-bit, to be specific). I have Mercurial and Git installed. I have Python 2.5 (32-bit) installed. I followed the instruction...
Quake asked 2/3, 2010 at 4:40

1

I like the Dulwich project as it provides pure Python interface to interacting with git. It looks pretty low-level though... While I couldn't find reference on how to perform simple tasks. My nee...
Christychristye asked 9/2, 2020 at 18:10

1

Solved

I'm using dulwich (a Python library) to access a git repository. When I use get_object to retrieve a commit, it has a number of attributes. One of those is author. When I retrieve this attribute, I...
Babby asked 12/6, 2018 at 21:0

2

Solved

How to do something like git pull in python dulwich library.
Regen asked 15/8, 2012 at 7:22

3

Solved

I am having problems to retrieve the following information of a git repo using python: I would like to get a list of all tags of this repository. I would like to checkout another branch and also ...
Abisia asked 9/4, 2013 at 18:40

3

I'm writing a git post-receive hook using Python and Git-Python that gathers information about the commits contained in a push, then updates our bug tracker and IM with a summary. I'm having troubl...
Dolmen asked 29/8, 2013 at 5:11

1

Solved

I would like to do the following with dulwich in an existing git repo: change a file commit push to a certain branch (not master) I read the documentation and also this post on SO, but I don't ...
Soutine asked 15/5, 2013 at 9:48

1

Solved

Is there any way to programmatically (using libraries like PyGithub, GitPython or dulwich) load any file right into MyRepo.wiki.git repository? Using Python, of course. I can easily upload a file...
Shaven asked 29/1, 2013 at 16:35

1

Solved

Apparently repo.do_commit(message='test commit', committer='Name ') only commits to refs/heads/master. Is there a way to set the current commit ref to another one than refs/heads/master? Or is th...
Vallie asked 1/8, 2011 at 21:33
1

© 2022 - 2024 — McMap. All rights reserved.