Cannot delete GIT tag because of special character "Ã"
In a similar case I used combination of echo
and xargs
as follows to delete bad tag containing wrong unicode character \u0083
:
echo -e '\u0083release-1.7.5-hotfix1' |xargs git tag -d
echo -e '\u0083release-1.7.5-hotfix1' |xargs push --delete origin