From fc8f92112a865c5d68a8ed12489ce826fe8da372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin-Charles=20Guih=C3=A9neuf?= Date: Fri, 18 Dec 2020 13:38:40 +0100 Subject: [PATCH] navi: Add git tag helpers --- navi/git.cheat | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/navi/git.cheat b/navi/git.cheat index c36185c..7c66589 100644 --- a/navi/git.cheat +++ b/navi/git.cheat @@ -58,3 +58,14 @@ git commit --no-verify # Create new branch from current HEAD git checkout -b + +# Create and push tag +git tag +git push origin + +# Delete and push tag +git tag -d +git push -d origin + +# Variables +$ tag_name: git tag -l | awk '{print $1}'