#!/bin/bash
HASH=$(git rev-parse HEAD)
TGZ=$(basename $(readlink -f .))-$HASH.tar.gz
git archive --format tar.gz -o $TGZ $HASH && echo $TGZ
