19 Star 96 Fork 35

Gitee 极速下载/Hugo-Go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/gohugoio/hugo
克隆/下载
merge-release.sh 366 Bytes
一键复制 编辑 原始数据 按行查看 历史
Bjørn Erik Pedersen 提交于 2020-10-08 19:32 . Add merge helper
#!/usr/bin/env bash
if (( $# < 1 ));
then
echo "USAGE: ./merge-release.sh 0.76.0"
exit 1
fi
die() { echo "$*" 1>&2 ; exit 1; }
v=$1
git merge "release-${v}" || die;
git push || die;
git checkout stable || die;
git reset --hard "v${v}" || die;
git push -f || die;
git checkout master || die;
git subtree push --prefix=docs/ docs-local "tempv${v}";
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/Hugo-Go.git
git@gitee.com:mirrors/Hugo-Go.git
mirrors
Hugo-Go
Hugo-Go
master

搜索帮助