Initial commit

This commit is contained in:
曾文豪
2022-12-22 17:25:10 +08:00
commit 7cec4f3f35
61 changed files with 3696 additions and 0 deletions

17
publish.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/sh
VERSION=$1
MESSAGE=$2
## 推送现有代码
git add .
git commit -m "publish $VERSION"
git push
## 打标签并推送
git tag -a $VERSION -m $MESSAGE
if [ $? -ne 0 ];then
exit 1
fi
git push origin $VERSION