We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00a696c commit 51c01c3Copy full SHA for 51c01c3
src/main/clojure/clojure/tools/gitlibs/impl.clj
@@ -61,8 +61,9 @@
61
(defn git-fetch
62
[^File git-dir]
63
(let [git-path (.getCanonicalPath git-dir)
64
+ ;; NOTE: --prune-tags would be desirable here but was added in git 2.17.0
65
{:keys [exit err] :as ret} (run-git "--git-dir" git-path
- "fetch" "--quiet" "--all" "--tags" "--prune" "--prune-tags")]
66
+ "fetch" "--quiet" "--all" "--tags" "--prune")]
67
(when-not (zero? exit)
68
(throw (ex-info (format "Unable to fetch %s%n%s" git-path err) ret)))))
69
0 commit comments