用于项目上线 或者 最新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