How to pull out of the remote using dulwich?

How to do something like git pullin python dulwich library.

+5
source share
2 answers

I did not use dulwich, but from these docs, maybe something like:

from dulwich.repo import Repo
from dulwich.client import HttpGitClient
local = Repo.init("local", mkdir=True)
client = HttpGitClient('http://github.com/adammorris/')
remote_refs = client.fetch("history.js.git",local)
local["HEAD"] = remote_refs["refs/heads/master"]

At this point, it did not upload files, but I could do a “git checkout” from the local path and updated the files.

In addition, they saw the following:

+5
source

Full example. Works with Bitbucket.

from dulwich import index
from dulwich.client import HttpGitClient
from dulwich.repo import Repo

local_repo = Repo.init(LOCAL_FOLDER, mkdir=True)
remote_repo = HttpGitClient(REMOTE_URL, username=USERNAME, password=PASSWORD)
remote_refs = remote_repo.fetch(REMOTE_URL, local_repo)
local_repo[b"HEAD"] = remote_refs[b"refs/heads/master"]

index_file = local_repo.index_path()
tree = local_repo[b"HEAD"].tree
index.build_index_from_tree(local_repo.path, index_file, local_repo.object_store, tree)

Replace your data with LOCAL_FOLDER, REMOTE_URL, USERNAME, PASSWORD.

+1
source

All Articles