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...
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(...
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...
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...
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...
2
Solved
How to do something like git pull in python dulwich library.
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 ...
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 ...
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...
1
© 2022 - 2024 — McMap. All rights reserved.