1 Star 0 Fork 1

Mayfool/gitbash

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
commit_and_push.sh 462 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mayfool 提交于 2023-04-15 23:46 . 重命名以及格式化
#!/usr/bin/env bash
# -*- coding: utf-8 -*-
#
# 添加文件
# @author: 徐宙
# @date: 2020-12-08
function success_log() {
echo -e "\033[32m $* \033[0m"
}
function error_log() {
echo -e "\033[31m $* \033[0m"
}
if [ $# -lt 1 ]; then
error_log "Usage: commit_and_push.sh message"
exit 1
fi
if [[ -z "$(git status --porcelain)" ]]; then
error_log "没有待提交文件"
exit 1
fi
git add .
git commit -m "$1"
git pull --rebase
git push
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/mayfool/gitbash.git
git@gitee.com:mayfool/gitbash.git
mayfool
gitbash
gitbash
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385