Jean-Louis Fuchs

Results 64 comments of Jean-Louis Fuchs

@jkimbo I found some time to run the caluma test-suite: ``` 170 failed, 505 passed, 71 errors in 21.58s ``` This means it only slightly worse than #774. If update...

My next window to work on v3 is in two weeks.

Well, I'll need that too, I am writing a portable messaging library [chirp](https://github.com/concretecloud/chirp) connecting the major platforms (python, node, ruby... etc and C of course). The most efficient way to...

This fixes all the problems I had: 1. References from searches being lost 2. Undo history broken 3. Jumping on save

Yes. Maybe grep some output, to make sure it does something? Its a bit strange, but the best we can do, right? Would you do a make check or should...

Thanks a lot for your answer. I have nothing concrete, yet. We will implement a quick solution that solves the customers problem in the layer [1] using neon. The next...

Our project [caluma](https://github.com/projectcaluma/caluma) uses graphene, we are committed to it. I wanted to help the project last year, but I wasn't able put much time in. I will talk to...

I presented GitButler to my colleagues and they of course immediately tried to use it on our largest repository. Moving changes between virtual-branches takes over two seconds. So I started...

``` $ git ls-files | wc -l 11611 ``` It seems like rehashing a lot, we also have a lot large snapshot-test files. (See findings)

I think I found the problem. In [git_diff_tree_to_workdir](https://libgit2.org/libgit2/#v0.20.0/group/diff/git_diff_tree_to_workdir) the hashes from the workdir (filesystem) are not cached. It will rehash every unchanged file. The cache seems to be missing, because...