-
I can create a new repo with Git, `git add` a change, then add another change, and `git diff` the index with worktree:
~~~
> git init
> 'hello world' > hello.txt
> git add hello.txt
> 'world …
ghost updated
5 months ago
-
`poetry add git+https://github.com/mesonbuild/meson.git` does not work on Windows, because it tries to create a symlink.
However, I can git clone this repository with no problems, and I can install…
-
The Dulwich Git history contains a few ".git" directories in early commits, at a time when C git still allowed this.
from "git fsck --full":
warning in tree eaea53f8085ad0f9cd299b534774dfaef2bc2…
-
Hi, are there any plans to support the new `reftable` storage format for Git refs?
I could not find any occurrence in the code base, but don't hesitate to correct me if I am wrong.
My immediate …
-
Some of the network tests appear to be flaky on windows, and fairly regularly fail:
```
======================================================================
ERROR: test_fetch_pack (dulwich.tes…
-
## Summary
* `libgit2`'s `examples` directory contains a simple `git` client that seems to have more working functionality than the `dulwich` client (see https://github.com/dulwich/dulwich/issues/87…
-
```
from dulwich.porcelain import pull
repo = clone('', 'out', depth=1)
... commit changes to your repo
pull(repo, force=True)
```
As reported here but for pushes:
https://github.com/dulw…
-
* store URL (=REPO+RELATIVE_PATH) and hash of commit in tree.
* api to get required files from repo
pure python git api e.g. https://github.com/dulwich/dulwich
-
By default, `dulwich.porcelain.add` add files from the current working directory rather the root directory of the specified repository. This can be confirm by the highlighted code in the screenshot be…
-
Consider the following project structure
- data
- data1
- file1
- file1.dvc
- data2
- file2
- file2.dvc
- .gitignore
`.gitignore` is as follows:
```
data/**
!data/*…