Skip to content

Instantly share code, notes, and snippets.

@wojtekmach
Created March 22, 2013 08:37
Show Gist options
  • Select an option

  • Save wojtekmach/5219800 to your computer and use it in GitHub Desktop.

Select an option

Save wojtekmach/5219800 to your computer and use it in GitHub Desktop.
(set -e;
git rev-list --reverse origin/master..master |
while read rev; do
echo "Checking out: $(git log --oneline -1 $rev)";
git checkout -q $rev;
python runtests.py;
done)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment