码迷,mamicode.com
首页 > 系统相关 > 详细

Mac 配置自定义执行文件 pull.sh,push.sh

时间:2021-06-28 18:44:07      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:port   chmod   新建   bin   git   user   pull   The   环境   

Mac 自定义可执行脚本

新建文件夹sh

mkdir sh

创建自定义sh

touch pull.sh
touch push.sh

写入内容

#!/bin/bash
# 一次性处理git拉取
#branch_name=`git symbolic-ref --short -q HEAD`
branch_name=$(git symbolic-ref --short -q HEAD)
git pull origin "$branch_name"
#!/bin/bash
# 一次性处理git提交
#branch_name=`git symbolic-ref --short -q HEAD`
branch_name=$(git symbolic-ref --short -q HEAD)
if [ ! -n "$1" ] ;then
commit="提交"
else
commit=$1
fi
git add .
git commit -m "$commit"
git push origin "$branch_name"

设为可执行

chmod +x pull.sh
chmod +x push.sh

配置环境变量

vim ~/.zshrc
# 自定义sh
export PATH="/Users/jiqing/sh:$PATH"
source ~/.zshrc

Mac 配置自定义执行文件 pull.sh,push.sh

标签:port   chmod   新建   bin   git   user   pull   The   环境   

原文地址:https://www.cnblogs.com/jiqing9006/p/14934260.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!