You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
560 B
23 lines
560 B
6 years ago
|
#!/bin/sh
|
||
|
|
||
|
# Usage: ./make-git-snapshot.sh [COMMIT]
|
||
|
#
|
||
|
# to make a snapshot of the given tag/branch. Defaults to HEAD.
|
||
|
# Point env var REF to a local mesa repo to reduce clone time.
|
||
|
|
||
|
DIRNAME=intel-gpu-tools-$( date +%Y%m%d )
|
||
|
|
||
|
echo REF ${REF:+--reference $REF}
|
||
|
echo DIRNAME $DIRNAME
|
||
|
echo HEAD ${1:-HEAD}
|
||
|
|
||
|
rm -rf $DIRNAME
|
||
|
|
||
|
git clone --depth 1 ${REF:+--reference $REF} \
|
||
|
git://git.freedesktop.org/git/xorg/app/intel-gpu-tools $DIRNAME
|
||
|
|
||
|
GIT_DIR=$DIRNAME/.git git archive --format=tar --prefix=$DIRNAME/ ${1:-HEAD} \
|
||
|
| bzip2 > $DIRNAME.tar.bz2
|
||
|
|
||
|
# rm -rf $DIRNAME
|