hu 2.0.16 → 2.0.17
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/lib/hu/deploy.rb +8 -1
- data/lib/hu/version.rb +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: d9d8ad87f70152123a1e17ccef621d16dba57c2ccb68781e4fcab7eb5334f713
|
|
4
|
+
data.tar.gz: 40295e3e7d486d72e6ed518227e89fb0996c6e9798f570015d357a2d598ef21a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ab9ddac725f8efc6030645cd965ac091b8e19fa5d8ac46edae98971be9735a0adbf56ff553b80dedaa74d441764967f1f4582046002f73d4c80a764bc2e4a18
|
|
7
|
+
data.tar.gz: 2a7ffd6ebf4935614cccf8d4e57fe1c77151fe0b8a0fdbf165bda72661aeb77d6be71b1737913f29b07f3eebd359f71af66a1f1878014cc14e345b09bb56cef7
|
data/lib/hu/deploy.rb
CHANGED
|
@@ -145,7 +145,14 @@ module Hu
|
|
|
145
145
|
puts
|
|
146
146
|
puts "ERROR: This repository doesn't seem to be git-flow enabled.".color(:red)
|
|
147
147
|
puts
|
|
148
|
-
puts "
|
|
148
|
+
puts "Please run (copy/paste) all of the following commands:"
|
|
149
|
+
puts
|
|
150
|
+
puts "git flow init -d"
|
|
151
|
+
puts 'git config gitflow.prefix.hotfix "hotfix/"'
|
|
152
|
+
puts 'git config gitflow.prefix.feature "feature/"'
|
|
153
|
+
puts 'git config gitflow.prefix.bugfix "bugfix/"'
|
|
154
|
+
puts 'git config gitflow.prefix.release "release/"'
|
|
155
|
+
puts 'git config gitflow.prefix.support "support/"'
|
|
149
156
|
puts
|
|
150
157
|
exit 1
|
|
151
158
|
end
|
data/lib/hu/version.rb
CHANGED