Git push will push only branch related tags

fix #1846
This commit is contained in:
Lukasz Klich 2016-02-13 20:34:21 +01:00
parent 2ca63f0084
commit 4a7e33c2e0

View file

@ -60,8 +60,7 @@
(defmethod push :git [project & args]
(binding [eval/*dir* (:root project)]
(apply eval/sh-with-exit-code "Couldn't push to the remote" "git" "push" args)
(apply eval/sh-with-exit-code "Couldn't push tags to the remote" "git" "push" "--tags" args)))
(apply eval/sh-with-exit-code "Couldn't push to the remote" "git" "push" "--follow-tags" args)))
(defmethod commit :git [project]
(binding [eval/*dir* (:root project)]