git-utils 0.6.4 → 0.6.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26672368e31366a1a0346024f6c63c6e311fa4bc
4
- data.tar.gz: f508261f8d9caa3501b957dee630578442d594d7
3
+ metadata.gz: a668371dcf9ededd4ab1b91577a7063c89c5fe3d
4
+ data.tar.gz: a6300809e7c81eca80c5f80f2f1f1d2acff631c4
5
5
  SHA512:
6
- metadata.gz: b2750cea08cf0b2cfb8cd5f8ae546b8e30aff8ae5b927caf85607450d71e23710b799077e550faa61850d6f6afc462804e3535503e5bfdfe335a449d3c6b9417
7
- data.tar.gz: 4b8ffc2a46c52d6fd4d249e0846f7f8ddd4a535394f853d3568104179e14183a684b701a3fb6136e76ecef2210e6a3f8b876d6eeefaec39855b23685db7f0c55
6
+ metadata.gz: 53112d30740a5b5552d31c10eccb6fd581e3608660cd224edb5c78267379f501fea4d33be12ab09205c96de9688aa409028600b11673c291d2e67b5478210ea1
7
+ data.tar.gz: bcacfcb876dd1b3275665048719099d8831c7ade6715b5d5078c9660d732d6f45e71f3a92abdf631ea92816129d74513f79d71dec8ceb818fbe5cd8c10232122
data/README.md CHANGED
@@ -21,7 +21,7 @@ The `git-utils` used to be pure Bash scripts, but they are now available as a Ru
21
21
  * `git push-branch`: pushes the current branch up to origin
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
- * `git sync`: syncs the local master with remote
24
+ * `git sync [branch]`: syncs the given branch with the remote branch (defaults to master)
25
25
  * `git undo`: undoes the last commit
26
26
 
27
27
  ## Aliases
@@ -63,7 +63,7 @@ These options can be overriden (and thus restored to their defaults) by passing
63
63
 
64
64
  ### git sync
65
65
 
66
- `git sync` syncs the local `master` with the remote `master`. On a branch called `add-markdown-support`, `git sync` is equivalent to the following:
66
+ `git sync [branch]` syncs the given local branch with the remote branch (defaults to master). On a branch called `add-markdown-support`, `git sync` is equivalent to the following:
67
67
 
68
68
  $ git checkout master
69
69
  $ git pull
@@ -8,7 +8,7 @@ require 'optparse'
8
8
 
9
9
  options = {}
10
10
  OptionParser.new do |opts|
11
- opts.banner = "Usage: yoga [options]"
11
+ opts.banner = "Usage: git cleanup [options]"
12
12
 
13
13
  opts.on("-r", "Clean up remote branches") do
14
14
  options[:remote] = true
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  module Utils
3
- VERSION = "0.6.4"
3
+ VERSION = "0.6.5"
4
4
  end
5
5
  end
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.6.4
4
+ version: 0.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Hartl
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-17 00:00:00.000000000 Z
11
+ date: 2014-09-30 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Add some Git utilities
14
14
  email: