#git stuff
##git crawl
A shell script that extends the git api allowing one to 'crawl' through their commits.
###Setup
Copy git-crawl to a directory that is accessible by PATH. Make sure the script can be executed by your user (ie - chmod u+x git-crawl
).
###Usage
- Checkout a commit that you want to crawl from
git crawl <destination commit>
- repeat 2 until you reach your desired commit
###Tip for Crawling Commits Sequentially ('git crawl next', eg)
git checkout master~10
to rewind ten commits on mastergit crawl master
moves one step closer