tick git added by mario-goulart on Wed Mar 11 20:45:43 2026

(import (chicken process))
(import commands tick-params)

(define-command 'git
  "git <git args>
     Run git commands on the local database repository"
  (lambda (args)
    (process-run "git" (append (list "-C" (db-dir)) args))))