An API for retrieving, caching, and programatically accessing git libraries.
To access git dependencies (for example, via tools.deps), one must download git directories and working trees as indicated by git shas. This library provides this functionality and also keeps a cache of git dirs and working trees that can be reused.
The following API is provided in clojure.tools.gitlibs
:
(resolve git-url rev) ;; returns full sha of rev in git-url
(procure git-url lib rev) ;; returns working tree directory for git-url identified as lib at rev
(descendant git-url revs) ;; returns rev which is a descedant of all revs, or nil if none
(tags git-url) ;; returns a collection of tags in this git-url (fetches to refresh)
(cache-dir) ;; returns path to root of gitlibs cache dir
The following git url types are supported:
https
- for public anonymous clone and fetch of public or private repos with credentials via git credential sourcesssh
- for authenticated clone and fetch of private repos (uses ssh)http
and git
protocols are plain-text and NOT supported or recommendedThe API functions all take revs, which can be any git rev that resolves to a commit, such as:
Procured working trees are always cached on the basis of the rev's full sha, so using procure
repeatedly on a rev that does not resolve to a fixed sha may result in new checkouts in the cache.
Downloaded git dirs and working trees are stored in the gitlibs cache dir, ~/.gitlibs by default. This directory is just a cache and can be safely removed if needed.
tools.gitlibs can be configured by either environment variable or Java system property. If both are provided, the Java system property takes precedence.
Env var | Java system property | default | description |
---|---|---|---|
GITLIBS | clojure.gitlibs.dir | ~/.gitlibs | Local directory cache for git repos and working trees |
GITLIBS_COMMAND | clojure.gitlibs.command | git | git command to run when shelling out (supply full path if needed) |
GITLIBS_DEBUG | clojure.gitlibs.debug | false | If true, print git commands and output to stderr |
GITLIBS_TERMINAL | clojure.gitlibs.terminal | false | If true, interactively prompt if needed |
(require '[clojure.tools.gitlibs :as gl])
;; Given a git repo url and a rev, resolve to a full sha.
(gl/resolve "https://github.com/clojure/spec.alpha.git" "739c1af")
;; => "739c1af56dae621aedf1bb282025a0d676eff713"
;; Given a git repo url, library identifier, and a rev, return a path to the working tree
(gl/procure "https://github.com/clojure/spec.alpha.git" 'org.clojure/spec.alpha "739c1af")
;; => "/Users/me/.gitlibs/libs/org.clojure/spec.alpha/739c1af56dae621aedf1bb282025a0d676eff713"
;; Given git repo url, and a collection of revs, return the full sha of the one commit that is
;; a descendant of all other revs or nil if no such rev exists in the collection.
(gl/descendant "https://github.com/clojure/spec.alpha.git" ["607aef0" "739c1af"])
;; => "739c1af56dae621aedf1bb282025a0d676eff713"
This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository.
Latest release: 2.4.176
org.clojure/tools.gitlibs {:mvn/version "2.4.176"}
Copyright © 2018-2022 Rich Hickey, Alex Miller, and contributors
All rights reserved. The use and distribution terms for this software are covered by the Eclipse Public License 1.0 which can be found in the file epl-v10.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.
Can you improve this documentation? These fine people already did:
Alex Miller & puredangerEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close