mop-flutter-sdk/tag.sh

10 lines
190 B
Dart
Raw Permalink Normal View History

2021-01-19 21:57:41 +08:00
#!/bin/bash
git tag |xargs git tag -d
git pull --tags
git tag -d $1
git push origin --delete tag $1
git add -u && git commit -m "add tag $1"
git tag -m "$message" $1
git push --follow-tags