#!/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