Hans-Christoph Steiner
Hans-Christoph Steiner
Removing an unused file is a nice, easy solution :) I know nothing about Javascript, so I can only guess about what will help for your app. It might be...
congrats! diffoscope is the best tool for that. Once you get that working, I can help set up the reproducible workflow in F-Droid. We'd also welcome a blog post on...
F-Droid rebuilds all its releases, so you can track that here: https://verification.f-droid.org/packages/de.tutao.tutanota/
The f-droid.org collection will be the largest by far. Most "fdroiddata" app repos would have more like 10-100 strings. So I agree, I don't think component discovery is the right...
`GIT_TERMINAL_PROMPT=0` is functionally equivalent to `core.askpass = /bin/true` as far as I understand it. The env vars can override the config values, so I want to set the env vars...
I've started implementing this finally. The first thing I'm looking at is a way to read commit IDs (e.g. `repo.head.commit.binsha`) while being utterly certain that `git` is never executed. `git.refs.symbolic.SymbolicReference.dereference_recursive()`...
`gitoxide` sounds great, but _fdroidserver_ is in Python, and using pure Python makes a lot of distribution issues much easier, hence GitPython. I think GitPython will only need some small...
#2029 implements the approach that I think works best. I'm open to suggestions from the GitPython experts.
> This seems to be [the code handling the rewrites](https://github.com/git/git/blob/5b97a56fa0e7d580dc8865b73107407c9b3f0eff/remote.c#L42-L67) in Git - maybe from there it becomes clear how it can be used more generally? > > Maybe it's...
Here is my attempt at documenting the setup and known weaknesses: https://github.com/gitpython-developers/GitPython/pull/2029/files#diff-35a18a749eb4d6efad45e56e78a9554926be5526e2ba2159b44311e718450e88R957 * I don't really understand what `receive.procReceiveRefs` and `uploadpack.packObjectsHook` do. Is there anything I should add about them?...