nulib-tests/sbin/retag
2025-02-28 21:05:42 +04:00

19 lines
341 B
Bash
Executable File

#!/bin/bash
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
source /etc/nulib.sh || exit 1
TAGS=(
8.1
8.2
)
args=(
"refaire les tags en cas de mise à jour de la branche"
)
parse_args "$@"; set -- "${args[@]}"
for tag in "${TAGS[@]}"; do
git tag -f "$tag"
git push -f origin "$tag" || die
done