运用 Shell 代码简化 Git 过程
切换分支的时分,需求更新一切的子模块,能够编写 Shell 代码简化这一进程。
本教程适用于 mac 体系,终端运用 zsh。
快速调用 Shell 脚本
- 将 Shell 代码存储为 .sh 文件,例如quickCheckout.sh
- 在终端中,cd 到当时文件夹,赋予代码运转权限:chmod +x quickCheckout.sh
- 翻开“访达”,进入“用户/用户名”文件夹,找到 .zshrc 文件(假如找不到测验 command+shift+. 来显现躲藏文件,或大局查找)
- 修改 .zshrc 文件,增加一行代码。
其间文件方位要修改成自己的文件方位,别号要修改成自己的别号。
例如这是一个 quickCheckout 脚本的别号:
alias quickcheckout='/Users/user/Desktop/Shell/quickCheckout.sh'
履行上面的操作后,就能够快速调用自己的 Shell 代码了:
快速切换 Git 分支
下面的代码能够快速切换分支,包含主存储库和一切的子存储库:
#!/bin/zsh
#快速切换分支,包含一切子模块
#会将主模块和一切子模块 checkout 到指定分支,随后履行 git pull
# 界说色彩
BLUE='\033[34m'
RED='\033[91m'
NC='\033[0m'
# 查看是否在 git 库房中
if ! git rev-parse --is-inside-work-tree > /dev/null 2>&1; then
echo -e "${RED}需求移动到 Git 库房。${NC}"
exit 1
fi
# 获取用户输入的分支称号
echo -e "${BLUE}请输入要切换到的分支称号:${NC}"
read branch_name
# 查看是否输入了分支称号
if [ -z "$branch_name" ]; then
echo -e "${RED}分支称号不能为空${NC}"
exit 1
fi
# 切换到指定分支
git checkout -m $branch_name
git pull || echo "'${RED}主项目拉取最新的更改失利${NC}'"
if [ $? -ne 0 ]; then
echo -e "${RED}切换到分支 $branch_name 失利${NC}"
exit 1
fi
# 遍历一切子模块并切换到同名分支
git submodule foreach "
git checkout -m $branch_name || echo "'${RED}子模块 \$name 切换到分支 $branch_name 失利${NC}'"
git pull || echo "'${RED}子模块 \$name 拉取最新的更改失利${NC}'"
"
echo -e "${BLUE}操作完结。${NC}"
# 查看每个子模块的切换状况
echo "\033[34m-------------------------------\033[0m"
git submodule foreach '
current_branch=$(git symbolic-ref --short HEAD)
if [ "$current_branch" != "'"$branch_name"'" ]; then
echo "'"${RED}子模块 \$name 当时分支为 \$current_branch,未切换到分支 $branch_name${NC}"'"
else
echo "'"${BLUE}子模块 \$name 成功切换到分支 $branch_name${NC}"'"
fi
'
echo "\033[34m-------------------------------\033[0m"
快速 Pull
下面的代码能够快速的 Pull,包含主存储库和一切的子存储库:
#!/bin/zsh
# 查看是否在 git 库房中
if ! git rev-parse --is-inside-work-tree > /dev/null 2>&1; then
echo "\033[34m需求移动到 Git 库房。\033[0m"
exit 1
fi
# 问询是否需求铲除本地的更改
echo "\033[34m是否需求铲除本地的更改? (y/n)\033[0m"
read -r response
if [ "$response" = "y" ] || [ "$response" = "Y" ]; then
echo "\033[34m正在铲除主存储库的本地更改...\033[0m"
git reset --hard HEAD
git clean -fd
echo "\033[34m正在铲除子模块的本地更改...\033[0m"
git submodule foreach --recursive '
echo "正在铲除 $name 的本地更改...";
git reset --hard HEAD;
git clean -fd
'
fi
# 主库房
echo "\033[34m正在 Pull 主存储库...\033[0m"
git pull
# 遍历一切子模块
echo "\033[34m正在 Pull 子模块...\033[0m"
git submodule foreach --recursive '
echo "正在获取 $name...";
git pull
'
echo "\033[34mPull 操作完结。\033[0m"
快速切换目录
假如有几个常用目录的话,写一个脚本会很快
我增加了几个自己常用的目录,这样输入 to 之后就能快速跳转了
#!/bin/zsh
# ANSI 转义序列,用于设置文本色彩为深蓝色
BLUE='\033[34m'
NC='\033[0m' # No Color, 用于重置色彩
# 界说一个相关数组来存储目录途径
typeset -A directories
typeset -A directories_name
# 增加一些目录到字典中
directories=(
d "/Users/user/Desktop"
n "/Users/user/Desktop/Note"
)
directories_name=(
d "Desktop"
n "笔记"
)
# 显现提示信息
print "${BLUE}-----------------------${NC}"
print "${BLUE}请输入要切换到的目录途径,回车回到主目录:${NC}"
for key in "${(@k)directories_name}"; do
print "${BLUE}输入 ${key}, 去往:${directories_name[$key]}${NC}"
done
read -r dir_name
# 查看目录
if [[ -n "${directories[$dir_name]}" ]]; then
if cd "${directories[$dir_name]}"; then
print "${BLUE}成功切换到目录 ${directories[$dir_name]}${NC}"
else
print "${BLUE}无法切换到目录 ${directories[$dir_name]}${NC}"
exit 1
fi
elif [[ -z "$dir_name" ]]; then
cd
else
print "${BLUE}目录称号 $dir_name 不存在${NC}"
exit 1
fi
print "${BLUE}-----------------------${NC}"