Monorepo for Tangled tangled.org
2

Configure Feed

Select the types of activity you want to include in your feed.

knotmirror/xrpc: pass repoPath on `git.listCommits`

Signed-off-by: Seongmin Lee <git@boltless.me>

author
Seongmin Lee
committer
Tangled
date (Jun 11, 2026, 10:52 AM +0300) commit 16ad9473 parent 3100001b change-id mmluyokr
+2
+2
knotmirror/xrpc/git_list_commits.go
··· 75 75 logs, err := func(repoPath, rev string) ([]byte, error) { 76 76 out, err := exec.Command( 77 77 "git", 78 + "-C", repoPath, 78 79 "rev-list", 79 80 rev, 80 81 fmt.Sprintf("--skip=%d", cursor), ··· 124 125 total, err := func(repoPath, rev string) (int, error) { 125 126 out, err := exec.Command( 126 127 "git", 128 + "-C", repoPath, 127 129 "rev-list", 128 130 rev, 129 131 "--count",