git linux服务器拉取代码脚本

用于项目上线 或者 最新git代码拉取

pull.sh

echo "loading..."

cd /www/blog

#没有提交的修改暂存到stash里面
git stash

curr_branch=$(git symbolic-ref --short -q HEAD)
pull_branch="master"

if [ ${curr_branch} != ${pull_branch} ]; then
   git checkout ${pull_branch} 
fi

git pull

#php /www/blog/init --env=prod --overwrite=all

 

上一篇:mount: block device /dev/cdrom is write-protected, mounting read-only 解决方法


下一篇:Linux CFS调度器之唤醒抢占--Linux进程的管理与调度(三十)