reflog-review 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/readme.md +12 -4
- data/reflow-review.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5457852aa40531e0e1f1e28630f745aca19f1c98
|
|
4
|
+
data.tar.gz: 320868b707ed727af89d1435cd9e1f2d298d7e69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c6788a22c0eedf7010e0a64b783eedb875af3d328a27aba0591271ba71dfa38691c9408fba1d1cd16d3b0a71f01f2ebad1d159b3d2079e35a6732debbb72d83
|
|
7
|
+
data.tar.gz: 7fa3fc1093b4cf5f0bf34a1629d39d6ee43de47f9f6c3034202dafb191f24938cf09b084514da5ede2c5b257a4e829182b6b22c9267c9cf2c857049a0ede3edf
|
data/readme.md
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
The reflog doesn't have to scare you.
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
You never really lose a commit in GIT, but sometimes it is harder then it should
|
|
4
|
+
be to recover it. This tool allows you easily review commits in the reflog one
|
|
5
|
+
at a time.
|
|
6
|
+
|
|
7
|
+
Just type `git review` and this will show you the diff, commit by commit, as it
|
|
8
|
+
iterates the reflog, until you find the commit you want.
|
|
4
9
|
|
|
5
10
|
## Usage
|
|
11
|
+
|
|
6
12
|
~~~ bash
|
|
7
13
|
git review
|
|
8
14
|
~~~
|
|
9
15
|
|
|
10
16
|
### Commands
|
|
17
|
+
|
|
11
18
|
~~~
|
|
12
19
|
j - next commit
|
|
13
20
|
k - previous commit
|
|
@@ -17,13 +24,14 @@ s - show current head
|
|
|
17
24
|
~~~
|
|
18
25
|
|
|
19
26
|
## Install
|
|
27
|
+
|
|
20
28
|
~~~ bash
|
|
21
|
-
|
|
22
|
-
cd ~/reflog-review && bundle install
|
|
29
|
+
gem install reflog-review
|
|
23
30
|
~~~
|
|
24
31
|
|
|
25
32
|
Add this to your `.gitconfig` file.
|
|
33
|
+
|
|
26
34
|
~~~ prolog
|
|
27
35
|
[alias]
|
|
28
|
-
|
|
36
|
+
review = !sh -c 'reflog-review'
|
|
29
37
|
~~~
|
data/reflow-review.gemspec
CHANGED
|
@@ -3,9 +3,9 @@ Gem::Specification.new do |s|
|
|
|
3
3
|
s.name = 'reflog-review'
|
|
4
4
|
s.email = 'blainesch@gmail.com'
|
|
5
5
|
s.homepage = 'https://github.com/blainesch/reflog-review'
|
|
6
|
-
s.version = '0.0.
|
|
6
|
+
s.version = '0.0.3'
|
|
7
7
|
s.summary = 'Easily review your reflog and recover commits.'
|
|
8
|
-
s.description = 'You never 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.'
|
|
8
|
+
s.description = '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. '
|
|
9
9
|
s.licenses = ['MIT']
|
|
10
10
|
s.require_paths = ['lib', 'bin']
|
|
11
11
|
s.files = `git ls-files`.split("\n")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: reflog-review
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Blaine Schmeisser
|
|
@@ -38,9 +38,9 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description: You never lose a commit in GIT, but sometimes it is harder then
|
|
42
|
-
be to recover it. This tool allows you easily review commits in the reflog
|
|
43
|
-
a time.
|
|
41
|
+
description: 'You never really lose a commit in GIT, but sometimes it is harder then
|
|
42
|
+
it should be to recover it. This tool allows you easily review commits in the reflog
|
|
43
|
+
one at a time. '
|
|
44
44
|
email: blainesch@gmail.com
|
|
45
45
|
executables:
|
|
46
46
|
- reflog-review
|