0 Star 0 Fork 2

StoneGo/mnsui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pc 672 Bytes
一键复制 编辑 原始数据 按行查看 历史
StoneGo 提交于 2024-02-21 02:15 . "money-never-sleeps-ui"
#!/bin/bash
helpFunction()
{
echo ""
echo "Usage: $0 -m <message_to_push> [-p] 1"
exit 1 # Exit script after printing help
}
push=0
while getopts "m:p:" opt
do
case "$opt" in
m) message="$OPTARG" ;;
p) push="$OPTARG";;
?) helpFunction ;; # Print helpFunction in case parameter is non-existent
esac
done
if [ -z "$message" ]
then
echo 'Missing -m' >&2
helpFunction
exit 2
fi
cur_branch=$(git branch --show-current)
# echo $cur_branch
# echo $branch
# echo $message
msg='"'$message'"'
# echo $message
# echo $msg
# echo $push
git add --all
git commit --message $msg
if [ $push -eq 1 ]
then
git push origin $cur_branch
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/stonego/mnsui.git
git@gitee.com:stonego/mnsui.git
stonego
mnsui
mnsui
master

搜索帮助