mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-06-08 04:48:10 +08:00
13 lines
239 B
Batchfile
13 lines
239 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
git pull
|
|
|
|
echo Deleting remote tags...
|
|
for /f "delims=" %%x in ('git tag') do git push --delete origin %%x
|
|
|
|
echo Deleting local tags...
|
|
for /f "delims=" %%i in ('git tag') do git tag -d %%i
|
|
|
|
echo All tags deleted.
|
|
pause |