用于查找最近的tag
    git describe
    把—abbrev设为0, 该命令查找最近的tag名,不需要后缀:
    git describe —abbrev=0
    获取当前分支的tag
    git describe —abbrev=0 —tags
    获取所有分支的tag
    git describe —tags git rev-list --tags --max-count=1