From b79309a05b906d64a72ce65483743c4834eed7bd Mon Sep 17 00:00:00 2001 From: Davide Alberani Date: Sun, 17 Sep 2017 17:17:48 +0200 Subject: [PATCH] note on git push --tags --- git-crash-course.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-crash-course.md b/git-crash-course.md index 267d989..efe77c1 100644 --- a/git-crash-course.md +++ b/git-crash-course.md @@ -506,7 +506,7 @@ Inviare i cambiamenti locali ad un branch remoto: ### Bonus track -* git push di default non invia i tags +* git push di default non invia i tags, che vanno pushati separatamente aggiungendo --tags * cancellare un branch remoto: **git push -d origin branch-name** -----