kuy 0.2.0 → 0.2.1
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/CHANGELOG.md +3 -0
- data/README.md +8 -2
- data/bin/kuy +1 -1
- data/kuy.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd4991ff3548766bd0d6592db7b8c667def25a04105faeb0e2d53ef150416eda
|
4
|
+
data.tar.gz: 7bb06e82ceddf84d935c1c4432e9e401664dde8d5c65e863832e8523fc4fc5ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00f8ddcf5b28902c7235bb6469dc99384e3647fcd3f728e399f416b2f7a7baa84f269e952dcf71a6aef1671360039e45b6875523c77d35f6f1396991d707ac70
|
7
|
+
data.tar.gz: cbb232b5b03f0e55be80658422ec2d0b9e8a6b4b8d1ff9f2fe730d1e4b97d01760301273630cc9b0b82c949ba0c9b2b6046f68bb42065d79b26c13ae791f47d5
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -20,13 +20,19 @@ brew gem install kuy
|
|
20
20
|
## How to Use
|
21
21
|
Run `kuy` or `kuymaster` command in your git feature branch.
|
22
22
|
|
23
|
-
Suppose you have a branch named `my-feature-branch` and you want to pull `develop` branch and merge into `my-feature-branch`.
|
23
|
+
Suppose you have a branch named `my-feature-branch` and you want to pull `origin/develop` branch and merge into `my-feature-branch`.
|
24
24
|
```sh
|
25
25
|
git checkout my-feature-branch
|
26
26
|
kuy
|
27
27
|
```
|
28
28
|
|
29
|
-
Or if you want to pull `
|
29
|
+
Or if you want to pull `origin/example` branch and merge into `my-feature-branch`.
|
30
|
+
```sh
|
31
|
+
git checkout my-feature-branch
|
32
|
+
kuy example
|
33
|
+
```
|
34
|
+
|
35
|
+
Or if you want to pull `origin/master` branch and merge into `my-feature-branch`.
|
30
36
|
```sh
|
31
37
|
git checkout my-feature-branch
|
32
38
|
kuymaster
|
data/bin/kuy
CHANGED
data/kuy.gemspec
CHANGED
@@ -2,7 +2,7 @@ require 'date'
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'kuy'
|
5
|
-
s.version = '0.2.
|
5
|
+
s.version = '0.2.1'
|
6
6
|
s.date = Date.today.to_s
|
7
7
|
s.summary = 'Kuy is a Ruby gem to simplify git feature branch workflow if you want to pull and merge your develop or master branch'
|
8
8
|
s.description = 'Kuy is a Ruby gem to simplify git feature branch workflow if you want to pull and merge your develop or master branch'
|