aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcontrib/build-commits.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/contrib/build-commits.sh b/contrib/build-commits.sh
index 5a3a775..9bd7e6c 100755
--- a/contrib/build-commits.sh
+++ b/contrib/build-commits.sh
@@ -1,5 +1,11 @@
#!/bin/bash
+# Author: AJ Meyer
+# Date: August 2013
+
+# This script can be used to sequentially build many bitfiles across a range of
+# git commits. This is helpful for doing a binary search for functional or
+# build errors introduced at an unknown time.
echo "Usage: $0 GIT-RANGE (e.g. $0 97de5..HEAD)"
COMMITS=$(git log --oneline $1 | awk '{print $1;}')
@@ -34,4 +40,4 @@ done
echo Checking out master
git checkout master
-echo Done! \ No newline at end of file
+echo Done!