From eb025090eb9d40418605bf2d257b2fc7665f8492 Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Wed, 11 Jan 2017 18:16:14 +0100 Subject: [PATCH] Fix git p alias in regards to tags Signed-off-by: Severin Kaderli --- .gitconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitconfig b/.gitconfig index 0d8cc6f..e0c48d9 100644 --- a/.gitconfig +++ b/.gitconfig @@ -16,7 +16,7 @@ c = commit -s # Push to the master branch of the origin remote - p = push --tags + p = push --follow-tags # Tag the latest commit t = !sh -c 'git tag -a $1 -m $1' -