From 58006a18988c7f5ed07b10c431cad8cc2628830d Mon Sep 17 00:00:00 2001 From: Paul Lecuq Date: Tue, 9 May 2023 15:30:40 +0200 Subject: [PATCH] updated newtag.sh --- newtag.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/newtag.sh b/newtag.sh index 4bad156..2488cdf 100755 --- a/newtag.sh +++ b/newtag.sh @@ -1,5 +1,6 @@ #!/bin/bash +for i in $(git tag --list | xargs); do git tag --delete ${i}; done git pull git tag $(date +"%Y.%m.%d") git push --tags