Project

git-run

0.0
No commit activity in last 3 years
No release in over 3 years
git run runs commands on git revisions
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 5.8

Runtime

~> 0.23
 Project Readme

git run

git run runs commands in git revisions

Getting started

Install git run through Rubygems:

$ gem install git-run

After installing, you'll have the git run subcommand for git:

$ git run
Usage: git run [options] <revision> <command>
    -h, --help                       Show this message

Time to try it out. Let's say you have passing test:

$ ruby test.rb
.....

You want to know if the test was passing in ealier revision, so you use git run to quickly switch to the revision and run the test:

$ git run ad1211 ruby test.rb
...FF

Now you know.