18 lines
327 B
Bash
18 lines
327 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
DIRNAME=mesa-$( date +%Y%m%d )
|
||
|
|
||
|
rm -rf $DIRNAME
|
||
|
git clone git://git.freedesktop.org/git/mesa/mesa $DIRNAME
|
||
|
cd $DIRNAME
|
||
|
if [ -z "$1" ]; then
|
||
|
git log | head -1
|
||
|
else
|
||
|
git checkout $1
|
||
|
fi
|
||
|
git log | head -1 | awk '{ print $2 }' > ../commitid
|
||
|
git repack -a -d
|
||
|
cd ..
|
||
|
tar jcf $DIRNAME.tar.bz2 $DIRNAME
|
||
|
rm -rf $DIRNAME
|