Get list of tags of remote repository without cloning using libgit2
Using this git command I can get all of the available tags of a remote repository without having to clone it: git ls-remote –tags https://github.com/blender/blender.git I want to replicate this using libgit2. I can use git_tag_list (https://libgit2.org/libgit2/#HEAD/group/tag/git_tag_list) to get a list of tags, but it requires a git_repository object. I can use git_repository_open to create… Read More Get list of tags of remote repository without cloning using libgit2