# File lib/packaging/util/version.rb, line 43
    def git_sha_or_tag
      if git_ref_type == "tag"
        git_describe
      else
        git_sha
      end
    end