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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/readme.md +12 -4
  3. data/reflow-review.gemspec +2 -2
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bcb3e90783038bcc935bafa506306a7d20af8e2c
4
- data.tar.gz: 791af717950ea642c3810929bb802d3483374719
3
+ metadata.gz: 5457852aa40531e0e1f1e28630f745aca19f1c98
4
+ data.tar.gz: 320868b707ed727af89d1435cd9e1f2d298d7e69
5
5
  SHA512:
6
- metadata.gz: ddb4b9b9c840a24effad09c64026802a36fa8282a437dfbe1f168fe852b6c2fa76c6824484c792941f2f167da114102722aecd07fb471e135b12275ceab55618
7
- data.tar.gz: ab20c3c4f940e3742b23f676a1ec95aaa7f5fb7250bb57235e853a179f41c76d9d0873fcc7711f232ad9b27f746634dde085039ab3743498d3d9d02d594abbad
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
- If you lost your place just run `git review` and this will iterate you through your reflog, showing you the diff, until you find the commit you want.
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
- git clone git@github.com:blainesch/reflog-review.git ~/reflog-review
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
- review = !sh -c 'ruby ~/reflog-review/bin/reflog-review.rb'
36
+ review = !sh -c 'reflog-review'
29
37
  ~~~
@@ -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.2'
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.2
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 it should
42
- be to recover it. This tool allows you easily review commits in the reflog one at
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