0.0
No commit activity in last 3 years
No release in over 3 years
You never really lose a commit in GIT, but sometimes it is harder then it should be to recover it. This tool allows you easily review commits in the reflog one at a time.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

The reflog doesn't have to scare you.

You never really lose a commit in GIT, but sometimes it is harder then it should be to recover it. This tool allows you easily review commits in the reflog one at a time.

Just type git review and this will show you the diff, commit by commit, as it iterates the reflog, until you find the commit you want.

Usage

git review

Commands

j - next commit
k - previous commit
s - show current head
p - pick commit
q - quit
? - print help

Install

gem install reflog-review

Add this to your .gitconfig file.

[alias]
  review = !sh -c 'reflog-review'