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}'