oh-my-zsh国内镜像安装
由于安装oh-my-zsh需要在github上拉取repo,所以国内网络环境安装可能有些困难,然后就看到了一个教程,使用gitee镜像,但步骤比较多,所以我简化了一下
部分内容转载来自:oh-my-zsh国内镜像安装
直接复制执行
sh -c "$(curl -fsSL https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh \
| sed 's|^REPO=.*|REPO=${REPO:-mirrors/oh-my-zsh}|g' \
| sed 's|^REMOTE=.*|REMOTE=${REMOTE:-https://gitee.com/${REPO}.git}|g')"
我常用的PS1
# zsh PS1
export PS1='%(?:%{$fg_bold[green]%}%n@%m:%{$fg_bold[red]%}%n@%m) %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)'
以下是转载内容:
首先下载 gitee 镜像的安装脚本
wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh
找到以下部分
# Default settings
ZSH=${ZSH:-~/.oh-my-zsh}
REPO=${REPO:-ohmyzsh/ohmyzsh}
REMOTE=${REMOTE:-https://github.com/${REPO}.git}
BRANCH=${BRANCH:-master}
把
REPO=${REPO:-ohmyzsh/ohmyzsh}
REMOTE=${REMOTE:-https://github.com/${REPO}.git}
替换为
REPO=${REPO:-mirrors/oh-my-zsh}
REMOTE=${REMOTE:-https://gitee.com/${REPO}.git}
保存后直接运行安装脚本
接下来修改仓库地址,这一步是为了更新检查正常
cd ~/.oh-my-zsh
git remote set-url origin https://gitee.com/mirrors/oh-my-zsh.git
git pull
posted on 2021-12-01 10:22 VertexZzz 阅读(5274) 评论(0) 编辑 收藏 举报