代码拉取完成,页面将自动刷新
#!/usr/bin/env bash
# -*- coding: utf-8 -*-
#
# 一键切换分支
# @author: 徐宙
# @date: 2020-12-08
# 获取脚本的全路径
script_path="$(realpath $0)"
# 提取脚本所在的目录
bash_dir="$(dirname $script_path)"
base_dir=$(pwd)
source "$bash_dir/git_common.sh"
source "$bash_dir/task_common.sh"
task_mode=1
task_id=
flag=0
task_branch=
env=
from_env=
from_branch=
to_branch=
work_dir=
projects=()
function usage() {
cat "$bash_dir/usage/mg.usage"
}
function merge_branch_with_project() {
project_dir=$1
from_br=$2
to_br=$3
# 打开文件夹
cd "$project_dir" || return $FAILED
curr_dir=$(pwd)
success_log "当前目录:$curr_dir"
# 合并分支
if [ $flag == 1 ]; then
git_merge_branch $from_br $to_br -y
else
git_merge_branch $from_br $to_br
fi
success_log "-----------------------"
success_log
}
function batch_merge_branch() {
for i in "${!projects[@]}";
do
project=${projects[$i]}
from_br=$from_branch
to_br=$to_branch
if [[ "$from_br" == '' ]]; then
from_br=`get_branch $from_env $project`
if [ $? == $FAILED ]; then
# 获取分支有异常,跳过
list_task $task_id
error_log $from_br
exit 1
fi
fi
if [[ "$to_br" == '' ]]; then
to_br=`get_branch $env $project`
if [ $? == $FAILED ]; then
# 获取分支有异常,跳过
list_task $task_id
error_log $to_br
exit 1
fi
fi
merge_branch_with_project $work_dir"/"$project $from_br $to_br
done
}
function main() {
# 解析参数
params=`getopt -o hye:f:t:E:p:w: --long from-branch:,to-branch:,from-env:,projects:,work-dir: -n "$0" -- "$@"`
[ $? != 0 ] && exit 1
eval set -- "$params"
while true ; do
case "$1" in
-h) usage; exit 0 ;;
-y) flag=1; shift ;;
-e) env=$2; shift 2 ;;
-E | --from-env) from_env=$2; shift 2 ;;
-f | --from-branch) from_branch=$2; shift 2 ;;
-t | --to-branch) to_branch=$2; shift 2 ;;
-p | --projects) projects=($2); shift 2 ;;
-w | --work-dir) work_dir=$2; shift 2 ;;
--) shift; break ;;
*) usage; exit 1 ;;
esac
done
if [ $# -lt 1 ]; then
# 非任务模式,可交互执行
task_mode=0
if [ "$work_dir" == '' ]; then
success_log "请输入工作空间:"
read work_dir
if [ "$work_dir" == '' ]; then
usage
exit 0
fi
fi
if [ "$from_branch" == '' ]; then
success_log "请输入源分支:"
read from_branch
if [ "$from_branch" == '' ]; then
usage
exit 0
fi
fi
if [ "$to_branch" == '' ]; then
success_log "请输入目标分支:"
read to_branch
if [ "$to_branch" == '' ]; then
usage
exit 0
fi
fi
if [ ${#projects[@]} == 0 ]; then
success_log "请输入项目列表:"
read val
if [ "$val" == '' ]; then
usage
exit 0
fi
projects=(`echo $val | tr "," "\n"`)
fi
batch_merge_branch
exit 0
else
task_id=$1
get_task $1
# 获取任务级别目标分支
if [[ "$to_branch" == '' ]]; then
to_branch=`get_branch $env`
if [ $? == $FAILED ]; then
# 获取分支有异常,推出
list_task $task_id
error_log $to_branch
exit 1
fi
fi
# 获取任务级别源分支
if [[ "$from_branch" == '' ]]; then
from_branch=`get_branch $from_env`
if [ $? == $FAILED ]; then
# 获取分支有异常,推出
list_task $task_id
error_log $from_branch
exit 1
fi
fi
work_dir=${task_info["work_dir"]}
task_branch=${task_info["task_br"]}
projects=(${task_projects[*]})
batch_merge_branch
exit 0
fi
}
main "$@"
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。