-3

I would like to examine an existing Git repository and extract all defined releases into a subfolder.

For example, if application A had 26 releases, my bash script would extract all 26 versions into subfolders such as:

A/(folder) for each of the defined releases

The preferred language is bash

Thanks all

1 Answers1

1

Looks like I figured out my own question:

    git checkout $tag
  git --work-tree=$outputLoc checkout HEAD -- .