1 Star 1 Fork 1

LuBang/OkHttpSource

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
deploy_website.sh 684 Bytes
一键复制 编辑 原始数据 按行查看 历史
luzhenbang 提交于 2018-08-02 17:52 . first commit
#!/bin/bash
set -ex
REPO="git@github.com:square/okhttp.git"
DIR=temp-clone
# Delete any existing temporary website clone
rm -rf $DIR
# Clone the current repo into temp folder
git clone $REPO $DIR
# Move working directory into temp folder
cd $DIR
# Checkout and track the gh-pages branch
git checkout -t origin/gh-pages
# Delete everything that isn't versioned (1.x, 2.x)
ls | grep -E -v '^\d+\.x$' | xargs rm -rf
# Copy website files from real repo
cp -R ../website/* .
# Stage all files in git and create a commit
git add .
git add -u
git commit -m "Website at $(date)"
# Push the new files up to GitHub
git push origin gh-pages
# Delete our temp folder
cd ..
rm -rf $DIR
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/lzbgit/OkHttpSource.git
git@gitee.com:lzbgit/OkHttpSource.git
lzbgit
OkHttpSource
OkHttpSource
master

搜索帮助