I need to download all releases (in fact all tags) of a project from github repository. So I need commands or scripts that provide all the tag names of a given project and download them automatically.
git clone --no-single-branch
git tag
command to list all the tagsgit archive
command to create an archive (tar or zip) of each tagged release (Hint: Use shell or batch scripting to loop over the output from git tag
)