7 lines
133 B
Bash
Executable File
7 lines
133 B
Bash
Executable File
#!/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
|