git-utils 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff6ac2207f071e41328576590172fe7dc6f8721c
4
- data.tar.gz: e34ce04c025afcd6bc0382e8a9c7c28b4cfa52d3
3
+ metadata.gz: 4dbbbdec04b6c1d90939a0ad0df4c0d2e5993531
4
+ data.tar.gz: ae14064fb9a9458e50ca1207305ab8138a90e896
5
5
  SHA512:
6
- metadata.gz: 57314c2b35a311cb40e289595bb9dfa0232941ffa38700ce9442e39ed5e4190f5310c6d3e16dad38a9c8411744e07be746b744cf5464bdd1fce38114578de7fa
7
- data.tar.gz: 2d0bb6d0ebec487eea8f45f7ff973b3333226f7e6d03e5654c067e6ab03402bf878e23822e15ff7962b62ec76ca8291fdf9f42a99bec6eee162d95a201c7c910
6
+ metadata.gz: c38fdeb5d28f22b492f28f78ad92d0203e723987ff31e6c0ac3d18428a4f5c2e5bf1acc77c54ae45feb9c1198f70074924d9729e518b034660af05f6af199351
7
+ data.tar.gz: 95f7a0cf850c4b09a4fdb9260b9242db0e64ac0235e1b553798212e06845dc4110de5886aa2be980d28d6aca29fb1624932f5fb555238e7be958e7d67c0140ea
data/README.md CHANGED
@@ -11,10 +11,10 @@ The `git-utils` used to be pure Bash scripts, but they are now available as a Ru
11
11
  ## Commands
12
12
 
13
13
  * `git amend`: alias for `git commit --amend`
14
- * `git anal` (*use with caution*): makes a commit with the message "Make anal changes"
15
14
  * `git bump`: makes a commit with the message "Bump version number"
16
15
  * `git cleanup`: deletes every branch already merged into current branch (apart from `master`, `staging`, `development`, and any branches listed in `~/.git-cleanup-preserved`). Pass the `-r` option to delete remote merged branches.
17
16
  * `git merge-branch [branch]`: merges current branch into given branch (defaults to `master`)
17
+ * `git minor`: makes a commit with the message "Make minor changes"
18
18
  * `git open`: opens the remote page for the repo (OS X & Linux)
19
19
  * `git polish`: makes a commit with the message "Polish"
20
20
  * `git pull-request`: pushes the branch and opens the remote page for issuing a new a pull request (OS X only)
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Makes minor changes.
4
+ system 'git commit -am "Make minor changes"'
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  module Utils
3
- VERSION = "0.7.0"
3
+ VERSION = "0.7.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,25 +1,25 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Hartl
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-17 00:00:00.000000000 Z
11
+ date: 2017-01-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Add some Git utilities
14
14
  email:
15
15
  - michael@michaelhartl.com
16
16
  executables:
17
17
  - git-amend
18
- - git-anal
19
18
  - git-bump
20
19
  - git-cleanup
21
20
  - git-delete-remote-branch
22
21
  - git-merge-branch
22
+ - git-minor
23
23
  - git-open
24
24
  - git-polish
25
25
  - git-pull-request
@@ -40,11 +40,11 @@ files:
40
40
  - README.md
41
41
  - Rakefile
42
42
  - bin/git-amend
43
- - bin/git-anal
44
43
  - bin/git-bump
45
44
  - bin/git-cleanup
46
45
  - bin/git-delete-remote-branch
47
46
  - bin/git-merge-branch
47
+ - bin/git-minor
48
48
  - bin/git-open
49
49
  - bin/git-polish
50
50
  - bin/git-pull-request
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- # Makes anal changes.
4
- system 'git commit -am "Make anal changes"'