Thibaut Horel
Thibaut Horel
Hi, It is true that the command-line currently does not have a switch for HTML messages (even though the library supports this feature). I would be happy to include this...
Thanks for the report. I won't have time to look into this in details until Christmas break, but can you try replacing the imports at the top of your script...
Thanks a lot. I agree that using `Content-Type: application/json` would be semantically better. However, if I remember correctly, a request with a Content-Type of application/json is no longer considered a...
@berezovskyi @laurakoesten Thanks a lot for the report! I think there have been a few changes in how Firefox extensions are supposed to be packaged which is probably what explains...
An alternative strategy for very large directories, instead of calling git log for every file, would be to walk the git commit history and check for each commit whether or...
@cameron314 thanks for your answer. It is interesting that you tried and didn't find any performance gain by using libgit. Do you still have the code you experimented with (maybe...
Thanks, I will keep that in mind when experimenting. Regarding the caching, I think the space cost should really be close to negligible: storing the hash of the last commit...
Ok so I did a very preliminary experiment usling libgit2 and the approach described above. The [code](https://gist.github.com/Thibauth/93e996c5fd0a87f7fa8b3c3cf0abaff3) is very ugly and not fully functional, but it already gives an idea...
I think it is related in that if we go for a caching solution for this issue, we might as well cache the commit count at the same time and...