shell--检查github最新release
前言经常在需要使用脚本监控仓库是不是有最新的release版本的发布,然后进行自动构建。如何知道远程的github是发布新的release版本,可以能过脚本来获得。
git ls-remote作用:查看远程分支。能够列出远程分中的内容。
查看远程所有tag1git ls-remote --tags ./.
结果如下:
d6602ec5194c87b0fc87103ca4d67251c76f233a refs/tags/v0.99f25a265a342aed6041ab0cc484224d9ca54b6f41 refs/tags/v0.99.17ceca275d047c90c0c7d5afb13ab97efdf51bd6e refs/tags/v0.99.3c5db5456ae3b0873fc659c19fafdde22313cc441 refs/tags/v0.99.2
查看指定仓库分支1git ls-remote http://www.kernel.org/pub/scm/git/git.git master seen r ...