Skip to content

Instantly share code, notes, and snippets.

@DominikDary
Forked from moredip/run-command-on-git-revisions
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DominikDary/b1873228b2e0de0fb52c to your computer and use it in GitHub Desktop.
Save DominikDary/b1873228b2e0de0fb52c to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# This script runs a given command over a range of Git revisions. Note that it
# will check past revisions out! Exercise caution if there are important
# untracked files in your working tree.
#
# This came from Gary Bernhardt's dotfiles:
# https://github.com/garybernhardt/dotfiles
#
# Example usage:
# $ run-command-on-git-revisions origin/master master 'python runtests.py'
set -e
start_ref=$1
end_ref=$2
test_command=$3
main() {
enforce_usage
run_tests
}
enforce_usage() {
if [ -z "$test_command" ]; then
usage
exit $E_BADARGS
fi
}
usage() {
echo "usage: `basename $0` start_ref end_ref test_command"
}
run_tests() {
revs=`log_command git rev-list --reverse ${start_ref}..${end_ref}`
for rev in $revs; do
#echo "Checking out: $(git log --oneline -1 $rev)"
echo -n `git log --pretty=format:'%ci' -1 $rev`
echo -n ','
git checkout --quiet $rev
$test_command
git clean -fd
done
log_command git checkout $end_ref
echo "OK for all revisions!"
}
log_command() {
echo "=> $*" >&2
eval $*
}
main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment