Skip to content

Instantly share code, notes, and snippets.

@adrian-green
Created February 12, 2020 06:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrian-green/605fd90884bd906fc9e45bca4f313c9e to your computer and use it in GitHub Desktop.
Save adrian-green/605fd90884bd906fc9e45bca4f313c9e to your computer and use it in GitHub Desktop.
#!/bin/bash
#Repo directory name
FNAME=${PWD##*/}
#Latest tag (release)
TAG=`git describe --abbrev=0 --tags`
#Create zip archive named after repo and tag, containing repo contents @HEAD
git archive -9 --prefix $FNAME/ HEAD -o ../$FNAME-$TAG.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment