changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/vc/pkg.lisp

changeset 379: 45889d307d7f
parent: 1c6e8353a855
child: 95b861dff3d8
author: Richard Westhaver <ellis@rwest.io>
date: Tue, 28 May 2024 16:44:54 -0400
permissions: -rw-r--r--
description: vc ignore stuff
1 (defpackage :vc
2  (:use :cl :std :cli :log :obj :sb-bsd-sockets :cl-ppcre :parse/lex)
3  (:import-from :uiop :with-current-directory)
4  (:export :*default-vc*
5  :vc-error :git-error :hg-error :vc-status
6  :vc-clone :vc-push :vc-pull :vc-commit
7  :vc-init :vc-id :vc-add :vc-remove
8  :vc-addremove :vc-diff
9  :vc-branch :*hg-program* :*git-program* :run-git-command
10  :run-hg-command :repo :hg-repo :git-repo
11  :vc-meta :hg-meta :git-meta :make-hg-client
12  :hg-client :*repo-roots* :*repo-registry* :find-repo
13  :make-repo :register-repo
14  :vc-ignore :hgignore :gitignore))
15 
16 (in-package :vc)
17 
18 (defparameter *default-vc* :hg)