aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbryan newbold <bnewbold@leaflabs.com>2013-11-12 18:16:56 -0500
committerbryan newbold <bnewbold@leaflabs.com>2013-11-12 18:16:56 -0500
commit3a8d5749a393b1a8b462ec5babf757d693419393 (patch)
tree7aff979aba8f3b0425997f28848b42dfe1cf6eb6
parent0d34adceb3665ad6d96cb4f2e8bd0ad55d712195 (diff)
downloadbasic-hdl-template-3a8d5749a393b1a8b462ec5babf757d693419393.tar.gz
basic-hdl-template-3a8d5749a393b1a8b462ec5babf757d693419393.zip
stick some basic comments into aj's build-commits.sh
-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!