git-utils 0.6.5 → 0.7.0
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/Gemfile +0 -1
- data/README.md +1 -0
- data/bin/git-typo +4 -0
- data/lib/git-utils/version.rb +1 -1
- metadata +10 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff6ac2207f071e41328576590172fe7dc6f8721c
|
|
4
|
+
data.tar.gz: e34ce04c025afcd6bc0382e8a9c7c28b4cfa52d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57314c2b35a311cb40e289595bb9dfa0232941ffa38700ce9442e39ed5e4190f5310c6d3e16dad38a9c8411744e07be746b744cf5464bdd1fce38114578de7fa
|
|
7
|
+
data.tar.gz: 2d0bb6d0ebec487eea8f45f7ff973b3333226f7e6d03e5654c067e6ab03402bf878e23822e15ff7962b62ec76ca8291fdf9f42a99bec6eee162d95a201c7c910
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -22,6 +22,7 @@ The `git-utils` used to be pure Bash scripts, but they are now available as a Ru
|
|
|
22
22
|
* `git delete-remote-branch <branch>`: deletes the remote branch if it is safe to do so
|
|
23
23
|
* `git switch <pattern>`: switches to the first branch matching the given pattern
|
|
24
24
|
* `git sync [branch]`: syncs the given branch with the remote branch (defaults to master)
|
|
25
|
+
* `git typo`: makes a commit with the message "Fix typo"
|
|
25
26
|
* `git undo`: undoes the last commit
|
|
26
27
|
|
|
27
28
|
## Aliases
|
data/bin/git-typo
ADDED
data/lib/git-utils/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git-utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Hartl
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-03-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Add some Git utilities
|
|
14
14
|
email:
|
|
@@ -26,13 +26,14 @@ executables:
|
|
|
26
26
|
- git-push-branch
|
|
27
27
|
- git-switch
|
|
28
28
|
- git-sync
|
|
29
|
+
- git-typo
|
|
29
30
|
- git-undo
|
|
30
31
|
extensions: []
|
|
31
32
|
extra_rdoc_files: []
|
|
32
33
|
files:
|
|
33
|
-
- .gitignore
|
|
34
|
-
- .project_id
|
|
35
|
-
- .rspec
|
|
34
|
+
- ".gitignore"
|
|
35
|
+
- ".project_id"
|
|
36
|
+
- ".rspec"
|
|
36
37
|
- Gemfile
|
|
37
38
|
- Gemfile.lock
|
|
38
39
|
- LICENSE.txt
|
|
@@ -50,6 +51,7 @@ files:
|
|
|
50
51
|
- bin/git-push-branch
|
|
51
52
|
- bin/git-switch
|
|
52
53
|
- bin/git-sync
|
|
54
|
+
- bin/git-typo
|
|
53
55
|
- bin/git-undo
|
|
54
56
|
- git-utils.gemspec
|
|
55
57
|
- lib/git-utils.rb
|
|
@@ -84,17 +86,17 @@ require_paths:
|
|
|
84
86
|
- lib
|
|
85
87
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
86
88
|
requirements:
|
|
87
|
-
- -
|
|
89
|
+
- - ">="
|
|
88
90
|
- !ruby/object:Gem::Version
|
|
89
91
|
version: '0'
|
|
90
92
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
93
|
requirements:
|
|
92
|
-
- -
|
|
94
|
+
- - ">="
|
|
93
95
|
- !ruby/object:Gem::Version
|
|
94
96
|
version: '0'
|
|
95
97
|
requirements: []
|
|
96
98
|
rubyforge_project:
|
|
97
|
-
rubygems_version: 2.4.1
|
|
99
|
+
rubygems_version: 2.4.5.1
|
|
98
100
|
signing_key:
|
|
99
101
|
specification_version: 4
|
|
100
102
|
summary: See the README for full documentation
|