abouttreesummaryrefslogcommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2025-12-30change default branchPatrick1-1/+1
2025-12-23update footerPatrick1-1/+1
2025-12-23only show preview/code links on markdown blobsPatrick1-5/+8
2025-12-23redirect links without command (/git/<repo>/a/b.c) to /git/<repo>/tree/a/b.cPatrick1-0/+5
2025-12-23buncha featuresPatrick5-24/+77
2025-12-23remove git subdirPatrick1-0/+0
2025-12-22update flakePatrick1-2/+3
2025-12-22upate flake.lockPatrick1-0/+27
2025-12-03add container to flakepatrick-scho1-0/+90
2025-12-03fix linkspatrick-scho1-4/+4
2025-12-03move cgithub assetspatrick-scho10-0/+0
2025-12-03fixpatrick-scho2-2/+2
2025-12-03update cgithub pathspatrick-scho2-7/+6
2025-12-03add cgithub to repo and install it in Makefilepatrick-scho12-0/+3339
2025-12-01changespatrick-scho4-11/+12
2025-12-01print readme by oid try 1patrick-scho6-48/+68
2025-12-01update flake package namepatrick-scho1-1/+1
2025-12-01fixpatrick-scho1-1/+1
2025-12-01new type of tree linkpatrick-scho2-2/+11
2025-12-01summary link -> /summary, tree link -> /patrick-scho1-2/+2
2025-12-01default page summary -> treepatrick-scho1-1/+1
2025-12-01move tree/blame tab to the left in page headerpatrick-scho1-6/+6
2025-12-01only print readme after tree on base pathpatrick-scho1-4/+1
2025-12-01summary is summary againpatrick-scho1-2/+1
2025-12-01...patrick-scho1-0/+1
2025-12-01moar changezpatrick-scho3-29/+65
2025-12-01...patrick-scho1-3/+0
2025-12-01fix againpatrick-scho2-8/+29
2025-12-01try to fix readme in summarypatrick-scho2-1/+8
2025-11-30always print readme on summary pagepatrick-scho1-0/+1
2025-11-30revert test changepatrick-scho1-1/+1
2025-11-30change default branch to mainpatrick-scho1-1/+1
2025-11-30test changepatrick-scho1-1/+1
2025-11-30add flakepatrick-scho2-0/+171
2020-03-13Bump versionJason A. Donenfeld1-1/+1
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2020-03-13global: use proper accessors for maybe_treeJason A. Donenfeld7-19/+29
A previous commit changed ->tree to ->maybe_tree throughout, which may have worked at the time, but wasn't safe, because maybe_tree is loaded lazily. This manifested itself in crashes when using the "follow" log feature. The proper fix is to use the correct contextual accessors everytime we want access to maybe_tree. Thankfully, the commit.cocci script takes care of creating mostly-correct patches that we could then fix up, resulting in this commit here. Fixes: 255b78f ("git: update to v2.18.0") Reviewed-by: Christian Hesse <mail@eworm.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2020-03-12ui-snapshot: add support for zstd compressionChristian Hesse4-4/+56
This patch adds support for zstd [0] compressed snapshots (*.tar.zst). We enable multiple working threads (-T0), but keep default compression level. The latter can be influenced by environment variable. [0] https://www.zstd.net/ Signed-off-by: Christian Hesse <mail@eworm.de>
2020-03-12tests: add tests for xz compressed snapshotsChristian Hesse2-1/+43
Signed-off-by: Christian Hesse <mail@eworm.de>
2020-02-26ui-snapshot: add support for lzip compressionHanspeter Portner4-3/+52
This patch adds support for lzip [1] compressed snapshots (*.tar.lz) [1] https://www.nongnu.org/lzip/ Signed-off-by: Hanspeter Portner <dev@open-music-kontrollers.ch> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2020-02-17git: update to v2.25.1Christian Hesse2-1/+1
Update to git version v2.25.1. No changes required.
2020-01-13tests: allow to skip git version testsChristian Hesse1-0/+4
This allows to run tests non-tagged git checkout or when bisecting. Signed-off-by: Christian Hesse <mail@eworm.de>
2020-01-13Bump versionJason A. Donenfeld1-1/+1
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2020-01-13git: update to v2.25.0Christian Hesse3-2/+2
Update to git version v2.25.0. Upstream renamed 'init_display_notes()' to 'load_display_notes()' in commit 1e6ed5441a61b5085978e0429691e2e2425f6846 ("notes: rename to load_display_notes()"). Signed-off-by: Christian Hesse <mail@eworm.de>
2019-12-11tests: skip tests if strace is not functionalChristian Hesse1-0/+6
Chances are that strace is available but not functional due to restricted permissions: strace: test_ptrace_get_syscall_info: PTRACE_TRACEME: Operation not permitted strace: ptrace(PTRACE_TRACEME, ...): Operation not permitted +++ exited with 1 +++ Just skip the tests then. Signed-off-by: Christian Hesse <mail@eworm.de>
2019-12-10git: update to v2.24.1Christian Hesse2-1/+1
Update to git version v2.24.1. No changes required. Signed-off-by: Christian Hesse <mail@eworm.de>
2019-11-22ui-repolist: do not return unsigned (negative) valueChristian Hesse1-1/+1
The function read_agefile() returns time_t, which is a signed datatime. We should not return unsigned (negative) value here. Reported-by: Johannes Stezenbach <js@linuxtv.org> Signed-off-by: Christian Hesse <mail@eworm.de>
2019-11-08git: update to v2.24.0Christian Hesse3-2/+2
Update to git version v2.24.0. Never use get_cached_commit_buffer() directly, use repo_get_commit_buffer() instead. The latter calls the former anyway. This fixes segmentation fault when commit-graph is enabled and get_cached_commit_buffer() does not return the expected result. Signed-off-by: Christian Hesse <mail@eworm.de>
2019-10-25git: update to v2.23.0Christian Hesse2-1/+1
Update to git version v2.23.0. No changes required. Signed-off-by: Christian Hesse <mail@eworm.de>
2019-10-25git: update to v2.22.0Christian Hesse3-7/+12
Update to git version v2.22.0. Upstream commit bce9db6d ("trace2: use system/global config for default trace2 settings") caused a regression. We have to unset HOME and XDG_CONFIG_HOME before early loading of config from trace2 code kicks in. Signed-off-by: Christian Hesse <mail@eworm.de>
2019-06-25ui-tree: allow per repository override for enable-blameChristian Hesse6-3/+13
The blame operation can cause high cost in terms of CPU load for huge repositories. Let's add a per repository override for enable-blame. Signed-off-by: Christian Hesse <mail@eworm.de>