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 +4 -4
- data/README.md +2 -2
- data/bin/git-cleanup +1 -1
- data/lib/git-utils/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a668371dcf9ededd4ab1b91577a7063c89c5fe3d
|
|
4
|
+
data.tar.gz: a6300809e7c81eca80c5f80f2f1f1d2acff631c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
|
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
|
data/bin/git-cleanup
CHANGED
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.6.
|
|
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-
|
|
11
|
+
date: 2014-09-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Add some Git utilities
|
|
14
14
|
email:
|