@@ -12,7 +12,7 @@ Feature: hub clone
12
12
}
13
13
"""
14
14
When I successfully run `hub clone rtomayko/ronn`
15
- Then it should clone "git ://github.com/rtomayko/ronn.git"
15
+ Then it should clone "https ://github.com/rtomayko/ronn.git"
16
16
And the output should not contain anything
17
17
18
18
Scenario : Clone a public repo with period in name
@@ -25,7 +25,7 @@ Feature: hub clone
25
25
}
26
26
"""
27
27
When I successfully run `hub clone hookio/hook.js`
28
- Then it should clone "git ://github.com/hookio/hook.js.git"
28
+ Then it should clone "https ://github.com/hookio/hook.js.git"
29
29
And the output should not contain anything
30
30
31
31
Scenario : Clone a public repo that starts with a period
@@ -38,7 +38,7 @@ Feature: hub clone
38
38
}
39
39
"""
40
40
When I successfully run `hub clone zhuangya/.vim`
41
- Then it should clone "git ://github.com/zhuangya/.vim.git"
41
+ Then it should clone "https ://github.com/zhuangya/.vim.git"
42
42
And the output should not contain anything
43
43
44
44
Scenario : Clone a repo even if same-named directory exists
@@ -52,11 +52,24 @@ Feature: hub clone
52
52
"""
53
53
And a directory named "rtomayko/ronn"
54
54
When I successfully run `hub clone rtomayko/ronn`
55
+ Then it should clone "https://github.com/rtomayko/ronn.git"
56
+ And the output should not contain anything
57
+
58
+ Scenario : Clone a public repo with git
59
+ Given git protocol is preferred
60
+ Given the GitHub API server:
61
+ """
62
+ get('/repos/rtomayko/ronn') {
63
+ json :private => false,
64
+ :name => 'ronn', :owner => { :login => 'rtomayko' },
65
+ :permissions => { :push => false }
66
+ }
67
+ """
68
+ When I successfully run `hub clone rtomayko/ronn`
55
69
Then it should clone "git://github.com/rtomayko/ronn.git"
56
70
And the output should not contain anything
57
71
58
72
Scenario : Clone a public repo with HTTPS
59
- Given HTTPS is preferred
60
73
Given the GitHub API server:
61
74
"""
62
75
get('/repos/rtomayko/ronn') {
@@ -80,7 +93,7 @@ Feature: hub clone
80
93
"""
81
94
When I successfully run `git config --global alias.c "clone --bare" `
82
95
And I successfully run `hub c rtomayko/ronn`
83
- Then "git clone --bare git ://github.com/rtomayko/ronn.git" should be run
96
+ Then "git clone --bare https ://github.com/rtomayko/ronn.git" should be run
84
97
And the output should not contain anything
85
98
86
99
Scenario : Unchanged public clone
@@ -133,8 +146,8 @@ Feature: hub clone
133
146
:permissions => { :push => false }
134
147
}
135
148
"""
136
- When I successfully run `hub --noop clone -p rtomayko/ronn`
137
- Then the output should contain exactly "git clone git@ github.com: rtomayko/ronn.git\n "
149
+ When I successfully run `hub --noop clone rtomayko/ronn`
150
+ Then the output should contain exactly "git clone https:// github.com/ rtomayko/ronn.git\n "
138
151
But it should not clone anything
139
152
140
153
Scenario : Clone a private repo
@@ -147,7 +160,7 @@ Feature: hub clone
147
160
}
148
161
"""
149
162
When I successfully run `hub clone -p rtomayko/ronn`
150
- Then it should clone "git@ github.com: rtomayko/ronn.git"
163
+ Then it should clone "https:// github.com/ rtomayko/ronn.git"
151
164
And the output should not contain anything
152
165
153
166
Scenario : Clone my repo
@@ -160,7 +173,7 @@ Feature: hub clone
160
173
}
161
174
"""
162
175
When I successfully run `hub clone dotfiles`
163
- Then it should clone "git@ github.com: mislav/dotfiles.git"
176
+ Then it should clone "https:// github.com/ mislav/dotfiles.git"
164
177
And the output should not contain anything
165
178
166
179
Scenario : Clone my repo that doesn't exist
@@ -184,7 +197,7 @@ Feature: hub clone
184
197
}
185
198
"""
186
199
When I successfully run `hub clone --bare -o master dotfiles`
187
- Then "git clone --bare -o master git@ github.com: mislav/dotfiles.git" should be run
200
+ Then "git clone --bare -o master https:// github.com/ mislav/dotfiles.git" should be run
188
201
And the output should not contain anything
189
202
190
203
Scenario : Clone repo to which I have push access to
@@ -196,6 +209,7 @@ Feature: hub clone
196
209
:permissions => { :push => true }
197
210
}
198
211
"""
212
+ And git protocol is preferred
199
213
When I successfully run `hub clone sstephenson/rbenv`
200
214
Then "git clone [email protected] :sstephenson/rbenv.git" should be run
201
215
And the output should not contain anything
@@ -209,6 +223,7 @@ Feature: hub clone
209
223
:permissions => { :push => true }
210
224
}
211
225
"""
226
+ And git protocol is preferred
212
227
When I successfully run `hub --noop clone sstephenson/rbenv`
213
228
Then the output should contain exactly
"git clone [email protected] :sstephenson/rbenv.git\n "
214
229
But it should not clone anything
@@ -225,7 +240,7 @@ Feature: hub clone
225
240
}
226
241
"""
227
242
When I successfully run `hub clone myorg/myrepo`
228
- Then it should clone "git@git .my.org: myorg/myrepo.git"
243
+ Then it should clone "https:// git.my.org/ myorg/myrepo.git"
229
244
And the output should not contain anything
230
245
231
246
Scenario : Clone from existing directory is a local clone
@@ -251,7 +266,7 @@ Feature: hub clone
251
266
}
252
267
"""
253
268
When I successfully run `hub clone rtomayko/ronn.wiki`
254
- Then it should clone "git ://github.com/RTomayko/ronin.wiki.git"
269
+ Then it should clone "https ://github.com/RTomayko/ronin.wiki.git"
255
270
And the output should not contain anything
256
271
257
272
Scenario : Clone a nonexisting wiki
@@ -284,5 +299,5 @@ Feature: hub clone
284
299
}
285
300
"""
286
301
When I successfully run `hub clone rtomayko/ronn`
287
- Then it should clone "git ://github.com/RTomayko/ronin.git"
302
+ Then it should clone "https ://github.com/RTomayko/ronin.git"
288
303
And the output should not contain anything
0 commit comments