I'm trying to list "snippets" but everything I've found so far only refers to listing repos.
In gitlab there's a submenu, "snippets", where we occasionally need to pull new code from. I'd like to obtain a list of all of the snippets, locate the most relevant with some scripting and clone it.
git ls-remote <URL>
isn't applicable here as that's only allowing me to list the repo, and the repo is essentially empty as it's not used.
Does anyone know the alternative command, or alternative method for ls-remote that'll allow me to list this snippets submenu?