gpt4 book ai didi

linux - 从 git repo 中提取标签

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:23:07 25 4
gpt4 key购买 nike

尝试使用 shell 从我的 repo 中找出不同的标签:

git ls-remote --tags git@mit.usa.com:s1836/pro-ti.git | awk '{print $2}'

返回,我怎样才能只找出不同的标签,如 v1、v2、v3、v4:

refs/tags/v1
refs/tags/v1^{}
refs/tags/v2
refs/tags/v2^{}
refs/tags/v3
refs/tags/v3^{}
refs/tags/v4
refs/tags/v4^{}

最佳答案

旧的 grepuniq 怎么样:

... | grep -o 'v[0-9]\+' | sort | uniq

关于linux - 从 git repo 中提取标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28681155/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com