Skip to content

Instantly share code, notes, and snippets.

@zaltoprofen
Created December 16, 2016 11:40
Show Gist options
  • Save zaltoprofen/c2c7910d511597fc6a376de2ca524922 to your computer and use it in GitHub Desktop.
Save zaltoprofen/c2c7910d511597fc6a376de2ca524922 to your computer and use it in GitHub Desktop.
#!/bin/bash
ref=$1
if [ -z "$ref" ]; then
ref=HEAD
fi
latest_hash=$(git log -n 1 --pretty=format:"%h" $ref)
repo_name=$(basename $(git rev-parse --show-toplevel))
git archive $ref --format=tar.gz --prefix=${repo_name}_${latest_hash}/ -o ${repo_name}_${latest_hash}.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment