加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
install.sh 760 Bytes
一键复制 编辑 原始数据 按行查看 历史
xingjianxu 提交于 2024-11-10 10:57 . feat: add --strict-mode option
#! /bin/sh
echo "Installing crepo..."
CREPO_HOME=${CREPO_HOME:="/opt/crepo"}
sudo mkdir -p $CREPO_HOME
sudo chown -R `whoami` $CREPO_HOME
git clone https://gitee.com/xingjianxu/crepo $CREPO_HOME
sudo ln -s $CREPO_HOME/bin/crepo /usr/bin/crepo
echo "Installing config-repo..."
CREPO_REPO=/.config-repo
sudo mkdir -p $CREPO_REPO
sudo chown -R `whoami` $CREPO_REPO
cd $CREPO_REPO
if [ -v CREPO_REPO_URL_GITHUB ]; then
git clone https://github.com/$CREPO_REPO_URL_GITHUB $CREPO_REPO
elif [ -v CREPO_REPO_URL_GITEE ]; then
git clone https://gitee.com/$CREPO_REPO_URL_GITEE $CREPO_REPO
elif [ -v CREPO_REPO_URL ]; then
git clone $CREPO_REPO_URL $CREPO_REPO
else
git init
fi
git config --global credential.helper store
echo "Successfully installed crepo!"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化