hubflow 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3 @@
1
+ module Hub
2
+ Version = VERSION = '1.7.0'
3
+ end
@@ -0,0 +1,438 @@
1
+ .\" generated with Ronn/v0.7.3
2
+ .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
+ .
4
+ .TH "HUB" "1" "November 2011" "DEFUNKT" "Git Manual"
5
+ .
6
+ .SH "NAME"
7
+ \fBhub\fR \- git + hub = github
8
+ .
9
+ .SH "SYNOPSIS"
10
+ \fBhub\fR [\fB\-\-noop\fR] \fICOMMAND\fR \fIOPTIONS\fR
11
+ .
12
+ .br
13
+ \fBhub alias\fR [\fB\-s\fR] \fISHELL\fR
14
+ .
15
+ .SS "Expanded git commands:"
16
+ \fBgit init \-g\fR \fIOPTIONS\fR
17
+ .
18
+ .br
19
+ \fBgit clone\fR [\fB\-p\fR] \fIOPTIONS\fR [\fIUSER\fR/]\fIREPOSITORY\fR \fIDIRECTORY\fR
20
+ .
21
+ .br
22
+ \fBgit remote add\fR [\fB\-p\fR] \fIOPTIONS\fR \fIUSER\fR[/\fIREPOSITORY\fR]
23
+ .
24
+ .br
25
+ \fBgit remote set\-url\fR [\fB\-p\fR] \fIOPTIONS\fR \fIREMOTE\-NAME\fR \fIUSER\fR[/\fIREPOSITORY\fR]
26
+ .
27
+ .br
28
+ \fBgit fetch\fR \fIUSER\-1\fR,[\fIUSER\-2\fR,\.\.\.]
29
+ .
30
+ .br
31
+ \fBgit checkout\fR \fIPULLREQ\-URL\fR [\fIBRANCH\fR]
32
+ .
33
+ .br
34
+ \fBgit cherry\-pick\fR \fIGITHUB\-REF\fR
35
+ .
36
+ .br
37
+ \fBgit am\fR \fIGITHUB\-URL\fR
38
+ .
39
+ .br
40
+ \fBgit apply\fR \fIGITHUB\-URL\fR
41
+ .
42
+ .br
43
+ \fBgit push\fR \fIREMOTE\-1\fR,\fIREMOTE\-2\fR,\.\.\.,\fIREMOTE\-N\fR [\fIREF\fR]
44
+ .
45
+ .br
46
+ \fBgit submodule add\fR [\fB\-p\fR] \fIOPTIONS\fR [\fIUSER\fR/]\fIREPOSITORY\fR \fIDIRECTORY\fR
47
+ .
48
+ .SS "Custom git commands:"
49
+ \fBgit create\fR [\fINAME\fR] [\fB\-p\fR] [\fB\-d\fR \fIDESCRIPTION\fR] [\fB\-h\fR \fIHOMEPAGE\fR]
50
+ .
51
+ .br
52
+ \fBgit browse\fR [\fB\-u\fR] [[\fIUSER\fR\fB/\fR]\fIREPOSITORY\fR] [SUBPAGE]
53
+ .
54
+ .br
55
+ \fBgit compare\fR [\fB\-u\fR] [\fIUSER\fR] [\fISTART\fR\.\.\.]\fIEND\fR
56
+ .
57
+ .br
58
+ \fBgit fork\fR [\fB\-\-no\-remote\fR]
59
+ .
60
+ .br
61
+ \fBgit pull\-request\fR [\fB\-f\fR] [\fITITLE\fR|\fB\-i\fR \fIISSUE\fR] [\fB\-b\fR \fIBASE\fR] [\fB\-h\fR \fIHEAD\fR]:
62
+ .
63
+ .SH "DESCRIPTION"
64
+ hub enhances various git commands to ease most common workflows with GitHub\.
65
+ .
66
+ .TP
67
+ \fBhub \-\-noop\fR \fICOMMAND\fR
68
+ Shows which command(s) would be run as a result of the current command\. Doesn\'t perform anything\.
69
+ .
70
+ .TP
71
+ \fBhub alias\fR [\fB\-s\fR] \fISHELL\fR
72
+ Writes shell aliasing code for \fISHELL\fR (\fBbash\fR, \fBsh\fR, \fBzsh\fR, \fBcsh\fR) to standard output\. With the \fB\-s\fR option, the output of this command can be evaluated directly within the shell:
73
+ .
74
+ .br
75
+ \fBeval $(hub alias \-s bash)\fR
76
+ .
77
+ .TP
78
+ \fBgit init\fR \fB\-g\fR \fIOPTIONS\fR
79
+ Create a git repository as with git\-init(1) and add remote \fBorigin\fR at "git@github\.com:\fIUSER\fR/\fIREPOSITORY\fR\.git"; \fIUSER\fR is your GitHub username and \fIREPOSITORY\fR is the current working directory\'s basename\.
80
+ .
81
+ .TP
82
+ \fBgit clone\fR [\fB\-p\fR] \fIOPTIONS\fR [\fIUSER\fR\fB/\fR]\fIREPOSITORY\fR \fIDIRECTORY\fR
83
+ Clone repository "git://github\.com/\fIUSER\fR/\fIREPOSITORY\fR\.git" into \fIDIRECTORY\fR as with git\-clone(1)\. When \fIUSER\fR/ is omitted, assumes your GitHub login\. With \fB\-p\fR, clone private repositories over SSH\. For repositories under your GitHub login, \fB\-p\fR is implicit\.
84
+ .
85
+ .TP
86
+ \fBgit remote add\fR [\fB\-p\fR] \fIOPTIONS\fR \fIUSER\fR[\fB/\fR\fIREPOSITORY\fR]
87
+ Add remote "git://github\.com/\fIUSER\fR/\fIREPOSITORY\fR\.git" as with git\-remote(1)\. When /\fIREPOSITORY\fR is omitted, the basename of the current working directory is used\. With \fB\-p\fR, use private remote "git@github\.com:\fIUSER\fR/\fIREPOSITORY\fR\.git"\. If \fIUSER\fR is "origin" then uses your GitHub login\.
88
+ .
89
+ .TP
90
+ \fBgit remote set\-url\fR [\fB\-p\fR] \fIOPTIONS\fR \fIREMOTE\-NAME\fR \fIUSER\fR[/\fIREPOSITORY\fR]
91
+ Sets the url of remote \fIREMOTE\-NAME\fR using the same rules as \fBgit remote add\fR\.
92
+ .
93
+ .TP
94
+ \fBgit fetch\fR \fIUSER\-1\fR,[\fIUSER\-2\fR,\.\.\.]
95
+ Adds missing remote(s) with \fBgit remote add\fR prior to fetching\. New remotes are only added if they correspond to valid forks on GitHub\.
96
+ .
97
+ .TP
98
+ \fBgit checkout\fR \fIPULLREQ\-URL\fR [\fIBRANCH\fR]
99
+ Checks out the head of the pull request as a local branch, to allow for reviewing, rebasing and otherwise cleaning up the commits in the pull request before merging\. The name of the local branch can explicitly be set with \fIBRANCH\fR\.
100
+ .
101
+ .TP
102
+ \fBgit cherry\-pick\fR \fIGITHUB\-REF\fR
103
+ Cherry\-pick a commit from a fork using either full URL to the commit or GitHub\-flavored Markdown notation, which is \fBuser@sha\fR\. If the remote doesn\'t yet exist, it will be added\. A \fBgit fetch <user>\fR is issued prior to the cherry\-pick attempt\.
104
+ .
105
+ .TP
106
+ \fBgit [am|apply]\fR \fIGITHUB\-URL\fR
107
+ Downloads the patch file for the pull request or commit at the URL and applies that patch from disk with \fBgit am\fR or \fBgit apply\fR\. Similar to \fBcherry\-pick\fR, but doesn\'t add new remotes\. \fBgit am\fR creates commits while preserving authorship info while \fBapply\fR only applies the patch to the working copy\.
108
+ .
109
+ .TP
110
+ \fBgit push\fR \fIREMOTE\-1\fR,\fIREMOTE\-2\fR,\.\.\.,\fIREMOTE\-N\fR [\fIREF\fR]
111
+ Push \fIREF\fR to each of \fIREMOTE\-1\fR through \fIREMOTE\-N\fR by executing multiple \fBgit push\fR commands\.
112
+ .
113
+ .TP
114
+ \fBgit submodule add\fR [\fB\-p\fR] \fIOPTIONS\fR [\fIUSER\fR/]\fIREPOSITORY\fR \fIDIRECTORY\fR
115
+ Submodule repository "git://github\.com/\fIUSER\fR/\fIREPOSITORY\fR\.git" into \fIDIRECTORY\fR as with git\-submodule(1)\. When \fIUSER\fR/ is omitted, assumes your GitHub login\. With \fB\-p\fR, use private remote "git@github\.com:\fIUSER\fR/\fIREPOSITORY\fR\.git"\.
116
+ .
117
+ .TP
118
+ \fBgit help\fR
119
+ Display enhanced git\-help(1)\.
120
+ .
121
+ .P
122
+ hub also adds some custom commands that are otherwise not present in git:
123
+ .
124
+ .TP
125
+ \fBgit create\fR [\fINAME\fR] [\fB\-p\fR] [\fB\-d\fR \fIDESCRIPTION\fR] [\fB\-h\fR \fIHOMEPAGE\fR]
126
+ Create a new public GitHub repository from the current git repository and add remote \fBorigin\fR at "git@github\.com:\fIUSER\fR/\fIREPOSITORY\fR\.git"; \fIUSER\fR is your GitHub username and \fIREPOSITORY\fR is the current working directory name\. To explicitly name the new repository, pass in \fINAME\fR, optionally in \fIORGANIZATION\fR/\fINAME\fR form to create under an organization you\'re a member of\. With \fB\-p\fR, create a private repository, and with \fB\-d\fR and \fB\-h\fR set the repository\'s description and homepage URL, respectively\.
127
+ .
128
+ .TP
129
+ \fBgit browse\fR [\fB\-u\fR] [[\fIUSER\fR\fB/\fR]\fIREPOSITORY\fR] [SUBPAGE]
130
+ Open repository\'s GitHub page in the system\'s default web browser using \fBopen(1)\fR or the \fBBROWSER\fR env variable\. If the repository isn\'t specified, \fBbrowse\fR opens the page of the repository found in the current directory\. If SUBPAGE is specified, the browser will open on the specified subpage: one of "wiki", "commits", "issues" or other (the default is "tree")\.
131
+ .
132
+ .TP
133
+ \fBgit compare\fR [\fB\-u\fR] [\fIUSER\fR] [\fISTART\fR\.\.\.]\fIEND\fR
134
+ Open a GitHub compare view page in the system\'s default web browser\. \fISTART\fR to \fIEND\fR are branch names, tag names, or commit SHA1s specifying the range of history to compare\. If a range with two dots (\fBa\.\.b\fR) is given, it will be transformed into one with three dots\. If \fISTART\fR is omitted, GitHub will compare against the base branch (the default is "master")\.
135
+ .
136
+ .TP
137
+ \fBgit fork\fR [\fB\-\-no\-remote\fR]
138
+ Forks the original project (referenced by "origin" remote) on GitHub and adds a new remote for it under your username\. Requires \fBgithub\.token\fR to be set (see CONFIGURATION)\.
139
+ .
140
+ .TP
141
+ \fBgit pull\-request\fR [\fB\-f\fR] [\fITITLE\fR|\fB\-i\fR \fIISSUE\fR] [\fB\-b\fR \fIBASE\fR] [\fB\-h\fR \fIHEAD\fR]
142
+ \fBgit pull\-request\fR [\fB\-f\fR] \fIISSUE\-URL\fR [\fB\-h\fR \fIHEAD\fR] Opens a pull request on GitHub for the project that the "origin" remote points to\. The default head of the pull request is the current branch\. Both base and head of the pull request can be explicitly given in one of the following formats: "branch", "owner:branch", "owner/repo:branch"\. This command will abort operation if it detects that the current topic branch has local commits that are not yet pushed to its upstream branch on the remote\. To skip this check, use \fB\-f\fR\.
143
+ .
144
+ .IP
145
+ If \fITITLE\fR is omitted, a text editor will open in which title and body of the pull request can be entered in the same manner as git commit message\.
146
+ .
147
+ .IP
148
+ If instead of normal \fITITLE\fR an issue number is given with \fB\-i\fR, the pull request will be attached to an existing GitHub issue\. Alternatively, instead of title you can paste a full URL to an issue on GitHub\.
149
+ .
150
+ .SH "CONFIGURATION"
151
+ Use git\-config(1) to display the currently configured GitHub username:
152
+ .
153
+ .IP "" 4
154
+ .
155
+ .nf
156
+
157
+ $ git config \-\-global github\.user
158
+ .
159
+ .fi
160
+ .
161
+ .IP "" 0
162
+ .
163
+ .P
164
+ Or, set the GitHub username and token with:
165
+ .
166
+ .IP "" 4
167
+ .
168
+ .nf
169
+
170
+ $ git config \-\-global github\.user <username>
171
+ $ git config \-\-global github\.token <token>
172
+ .
173
+ .fi
174
+ .
175
+ .IP "" 0
176
+ .
177
+ .P
178
+ You can override these values with \fIGITHUB_USER\fR and \fIGITHUB_TOKEN\fR environment variables\.
179
+ .
180
+ .P
181
+ See \fIhttp://help\.github\.com/set\-your\-user\-name\-email\-and\-github\-token/\fR for more information\.
182
+ .
183
+ .P
184
+ If you prefer the HTTPS protocol for GitHub repositories, you can set "hub\.protocol" to "https"\. This will affect \fBclone\fR, \fBfork\fR, \fBremote add\fR and other operations that expand references to GitHub repositories as full URLs that otherwise use git and ssh protocols\.
185
+ .
186
+ .IP "" 4
187
+ .
188
+ .nf
189
+
190
+ $ git config \-\-global hub\.protocol https
191
+ .
192
+ .fi
193
+ .
194
+ .IP "" 0
195
+ .
196
+ .SH "EXAMPLES"
197
+ .
198
+ .SS "git clone"
199
+ .
200
+ .nf
201
+
202
+ $ git clone schacon/ticgit
203
+ > git clone git://github\.com/schacon/ticgit\.git
204
+
205
+ $ git clone \-p schacon/ticgit
206
+ > git clone git@github\.com:schacon/ticgit\.git
207
+
208
+ $ git clone resque
209
+ > git clone git@github\.com/YOUR_USER/resque\.git
210
+ .
211
+ .fi
212
+ .
213
+ .SS "git remote add"
214
+ .
215
+ .nf
216
+
217
+ $ git remote add rtomayko
218
+ > git remote add rtomayko git://github\.com/rtomayko/CURRENT_REPO\.git
219
+
220
+ $ git remote add \-p rtomayko
221
+ > git remote add rtomayko git@github\.com:rtomayko/CURRENT_REPO\.git
222
+
223
+ $ git remote add origin
224
+ > git remote add origin git://github\.com/YOUR_USER/CURRENT_REPO\.git
225
+ .
226
+ .fi
227
+ .
228
+ .SS "git fetch"
229
+ .
230
+ .nf
231
+
232
+ $ git fetch mislav
233
+ > git remote add mislav git://github\.com/mislav/REPO\.git
234
+ > git fetch mislav
235
+
236
+ $ git fetch mislav,xoebus
237
+ > git remote add mislav \.\.\.
238
+ > git remote add xoebus \.\.\.
239
+ > git fetch \-\-multiple mislav xoebus
240
+ .
241
+ .fi
242
+ .
243
+ .SS "git cherry\-pick"
244
+ .
245
+ .nf
246
+
247
+ $ git cherry\-pick http://github\.com/mislav/REPO/commit/SHA
248
+ > git remote add \-f mislav git://github\.com/mislav/REPO\.git
249
+ > git cherry\-pick SHA
250
+
251
+ $ git cherry\-pick mislav@SHA
252
+ > git remote add \-f mislav git://github\.com/mislav/CURRENT_REPO\.git
253
+ > git cherry\-pick SHA
254
+
255
+ $ git cherry\-pick mislav@SHA
256
+ > git fetch mislav
257
+ > git cherry\-pick SHA
258
+ .
259
+ .fi
260
+ .
261
+ .SS "git am, git apply"
262
+ .
263
+ .nf
264
+
265
+ $ git am https://github\.com/defunkt/hub/pull/55
266
+ > curl https://github\.com/defunkt/hub/pull/55\.patch \-o /tmp/55\.patch
267
+ > git am /tmp/55\.patch
268
+
269
+ $ git am \-\-ignore\-whitespace https://github\.com/davidbalbert/hub/commit/fdb9921
270
+ > curl https://github\.com/davidbalbert/hub/commit/fdb9921\.patch \-o /tmp/fdb9921\.patch
271
+ > git am \-\-ignore\-whitespace /tmp/fdb9921\.patch
272
+
273
+ $ git apply https://gist\.github\.com/8da7fb575debd88c54cf
274
+ > curl https://gist\.github\.com/8da7fb575debd88c54cf\.txt \-o /tmp/gist\-8da7fb575debd88c54cf\.txt
275
+ > git apply /tmp/gist\-8da7fb575debd88c54cf\.txt
276
+ .
277
+ .fi
278
+ .
279
+ .SS "git fork"
280
+ .
281
+ .nf
282
+
283
+ $ git fork
284
+ [ repo forked on GitHub ]
285
+ > git remote add \-f YOUR_USER git@github\.com:YOUR_USER/CURRENT_REPO\.git
286
+ .
287
+ .fi
288
+ .
289
+ .SS "git pull\-request"
290
+ .
291
+ .nf
292
+
293
+ # while on a topic branch called "feature":
294
+ $ git pull\-request
295
+ [ opens text editor to edit title & body for the request ]
296
+ [ opened pull request on GitHub for "YOUR_USER:feature" ]
297
+
298
+ # explicit title, pull base & head:
299
+ $ git pull\-request "I\'ve implemented feature X" \-b defunkt:master \-h mislav:feature
300
+
301
+ $ git pull\-request \-i 123
302
+ [ attached pull request to issue #123 ]
303
+ .
304
+ .fi
305
+ .
306
+ .SS "git checkout"
307
+ .
308
+ .nf
309
+
310
+ # $ git checkout https://github\.com/defunkt/hub/pull/73
311
+ # > git remote add \-f \-t feature git://github:com/mislav/hub\.git
312
+ # > git checkout \-b mislav\-feature mislav/feature
313
+
314
+ # $ git checkout https://github\.com/defunkt/hub/pull/73 custom\-branch\-name
315
+ .
316
+ .fi
317
+ .
318
+ .SS "git create"
319
+ .
320
+ .nf
321
+
322
+ $ git create
323
+ [ repo created on GitHub ]
324
+ > git remote add origin git@github\.com:YOUR_USER/CURRENT_REPO\.git
325
+
326
+ # with description:
327
+ $ git create \-d \'It shall be mine, all mine!\'
328
+
329
+ $ git create recipes
330
+ [ repo created on GitHub ]
331
+ > git remote add origin git@github\.com:YOUR_USER/recipes\.git
332
+
333
+ $ git create sinatra/recipes
334
+ [ repo created in GitHub organization ]
335
+ > git remote add origin git@github\.com:sinatra/recipes\.git
336
+ .
337
+ .fi
338
+ .
339
+ .SS "git init"
340
+ .
341
+ .nf
342
+
343
+ $ git init \-g
344
+ > git init
345
+ > git remote add origin git@github\.com:YOUR_USER/REPO\.git
346
+ .
347
+ .fi
348
+ .
349
+ .SS "git push"
350
+ .
351
+ .nf
352
+
353
+ $ git push origin,staging,qa bert_timeout
354
+ > git push origin bert_timeout
355
+ > git push staging bert_timeout
356
+ > git push qa bert_timeout
357
+ .
358
+ .fi
359
+ .
360
+ .SS "git browse"
361
+ .
362
+ .nf
363
+
364
+ $ git browse
365
+ > open https://github\.com/YOUR_USER/CURRENT_REPO
366
+
367
+ $ git browse \-\- commit/SHA
368
+ > open https://github\.com/YOUR_USER/CURRENT_REPO/commit/SHA
369
+
370
+ $ git browse \-\- issues
371
+ > open https://github\.com/YOUR_USER/CURRENT_REPO/issues
372
+
373
+ $ git browse schacon/ticgit
374
+ > open https://github\.com/schacon/ticgit
375
+
376
+ $ git browse schacon/ticgit commit/SHA
377
+ > open https://github\.com/schacon/ticgit/commit/SHA
378
+
379
+ $ git browse resque
380
+ > open https://github\.com/YOUR_USER/resque
381
+
382
+ $ git browse resque network
383
+ > open https://github\.com/YOUR_USER/resque/network
384
+ .
385
+ .fi
386
+ .
387
+ .SS "git compare"
388
+ .
389
+ .nf
390
+
391
+ $ git compare refactor
392
+ > open https://github\.com/CURRENT_REPO/compare/refactor
393
+
394
+ $ git compare 1\.0\.\.1\.1
395
+ > open https://github\.com/CURRENT_REPO/compare/1\.0\.\.\.1\.1
396
+
397
+ $ git compare \-u fix
398
+ > (https://github\.com/CURRENT_REPO/compare/fix)
399
+
400
+ $ git compare other\-user patch
401
+ > open https://github\.com/other\-user/REPO/compare/patch
402
+ .
403
+ .fi
404
+ .
405
+ .SS "git submodule"
406
+ .
407
+ .nf
408
+
409
+ $ hub submodule add wycats/bundler vendor/bundler
410
+ > git submodule add git://github\.com/wycats/bundler\.git vendor/bundler
411
+
412
+ $ hub submodule add \-p wycats/bundler vendor/bundler
413
+ > git submodule add git@github\.com:wycats/bundler\.git vendor/bundler
414
+
415
+ $ hub submodule add \-b ryppl ryppl/pip vendor/pip
416
+ > git submodule add \-b ryppl git://github\.com/ryppl/pip\.git vendor/pip
417
+ .
418
+ .fi
419
+ .
420
+ .SS "git help"
421
+ .
422
+ .nf
423
+
424
+ $ git help
425
+ > (improved git help)
426
+ $ git help hub
427
+ > (hub man page)
428
+ .
429
+ .fi
430
+ .
431
+ .SH "BUGS"
432
+ \fIhttps://github\.com/defunkt/hub/issues\fR
433
+ .
434
+ .SH "AUTHORS"
435
+ \fIhttps://github\.com/defunkt/hub/contributors\fR
436
+ .
437
+ .SH "SEE ALSO"
438
+ git(1), git\-clone(1), git\-remote(1), git\-init(1), \fIhttp://github\.com\fR, \fIhttps://github\.com/defunkt/hub\fR
@@ -0,0 +1,437 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta http-equiv='content-type' value='text/html;charset=utf8'>
5
+ <meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
6
+ <title>hub(1) - git + hub = github</title>
7
+ <style type='text/css' media='all'>
8
+ /* style: man */
9
+ body#manpage {margin:0}
10
+ .mp {max-width:100ex;padding:0 9ex 1ex 4ex}
11
+ .mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
12
+ .mp h2 {margin:10px 0 0 0}
13
+ .mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
14
+ .mp h3 {margin:0 0 0 4ex}
15
+ .mp dt {margin:0;clear:left}
16
+ .mp dt.flush {float:left;width:8ex}
17
+ .mp dd {margin:0 0 0 9ex}
18
+ .mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
19
+ .mp pre {margin-bottom:20px}
20
+ .mp pre+h2,.mp pre+h3 {margin-top:22px}
21
+ .mp h2+pre,.mp h3+pre {margin-top:5px}
22
+ .mp img {display:block;margin:auto}
23
+ .mp h1.man-title {display:none}
24
+ .mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
25
+ .mp h2 {font-size:16px;line-height:1.25}
26
+ .mp h1 {font-size:20px;line-height:2}
27
+ .mp {text-align:justify;background:#fff}
28
+ .mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
29
+ .mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
30
+ .mp u {text-decoration:underline}
31
+ .mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
32
+ .mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
33
+ .mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
34
+ .mp b.man-ref {font-weight:normal;color:#434241}
35
+ .mp pre {padding:0 4ex}
36
+ .mp pre code {font-weight:normal;color:#434241}
37
+ .mp h2+pre,h3+pre {padding-left:0}
38
+ ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
39
+ ol.man-decor {width:100%}
40
+ ol.man-decor li.tl {text-align:left}
41
+ ol.man-decor li.tc {text-align:center;letter-spacing:4px}
42
+ ol.man-decor li.tr {text-align:right;float:right}
43
+ </style>
44
+ </head>
45
+ <!--
46
+ The following styles are deprecated and will be removed at some point:
47
+ div#man, div#man ol.man, div#man ol.head, div#man ol.man.
48
+
49
+ The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
50
+ .man-navigation should be used instead.
51
+ -->
52
+ <body id='manpage'>
53
+ <div class='mp' id='man'>
54
+
55
+ <div class='man-navigation' style='display:none'>
56
+ <a href="#NAME">NAME</a>
57
+ <a href="#SYNOPSIS">SYNOPSIS</a>
58
+ <a href="#DESCRIPTION">DESCRIPTION</a>
59
+ <a href="#CONFIGURATION">CONFIGURATION</a>
60
+ <a href="#EXAMPLES">EXAMPLES</a>
61
+ <a href="#BUGS">BUGS</a>
62
+ <a href="#AUTHORS">AUTHORS</a>
63
+ <a href="#SEE-ALSO">SEE ALSO</a>
64
+ </div>
65
+
66
+ <ol class='man-decor man-head man head'>
67
+ <li class='tl'>hub(1)</li>
68
+ <li class='tc'>Git Manual</li>
69
+ <li class='tr'>hub(1)</li>
70
+ </ol>
71
+
72
+ <h2 id="NAME">NAME</h2>
73
+ <p class="man-name">
74
+ <code>hub</code> - <span class="man-whatis">git + hub = github</span>
75
+ </p>
76
+
77
+ <h2 id="SYNOPSIS">SYNOPSIS</h2>
78
+
79
+ <p><code>hub</code> [<code>--noop</code>] <var>COMMAND</var> <var>OPTIONS</var><br />
80
+ <code>hub alias</code> [<code>-s</code>] <var>SHELL</var></p>
81
+
82
+ <h3 id="Expanded-git-commands-">Expanded git commands:</h3>
83
+
84
+ <p><code>git init -g</code> <var>OPTIONS</var><br />
85
+ <code>git clone</code> [<code>-p</code>] <var>OPTIONS</var> [<var>USER</var>/]<var>REPOSITORY</var> <var>DIRECTORY</var><br />
86
+ <code>git remote add</code> [<code>-p</code>] <var>OPTIONS</var> <var>USER</var>[/<var>REPOSITORY</var>]<br />
87
+ <code>git remote set-url</code> [<code>-p</code>] <var>OPTIONS</var> <var>REMOTE-NAME</var> <var>USER</var>[/<var>REPOSITORY</var>]<br />
88
+ <code>git fetch</code> <var>USER-1</var>,[<var>USER-2</var>,...]<br />
89
+ <code>git checkout</code> <var>PULLREQ-URL</var> [<var>BRANCH</var>]<br />
90
+ <code>git cherry-pick</code> <var>GITHUB-REF</var><br />
91
+ <code>git am</code> <var>GITHUB-URL</var><br />
92
+ <code>git apply</code> <var>GITHUB-URL</var><br />
93
+ <code>git push</code> <var>REMOTE-1</var>,<var>REMOTE-2</var>,...,<var>REMOTE-N</var> [<var>REF</var>]<br />
94
+ <code>git submodule add</code> [<code>-p</code>] <var>OPTIONS</var> [<var>USER</var>/]<var>REPOSITORY</var> <var>DIRECTORY</var></p>
95
+
96
+ <h3 id="Custom-git-commands-">Custom git commands:</h3>
97
+
98
+ <p><code>git create</code> [<var>NAME</var>] [<code>-p</code>] [<code>-d</code> <var>DESCRIPTION</var>] [<code>-h</code> <var>HOMEPAGE</var>]<br />
99
+ <code>git browse</code> [<code>-u</code>] [[<var>USER</var><code>/</code>]<var>REPOSITORY</var>] [SUBPAGE]<br />
100
+ <code>git compare</code> [<code>-u</code>] [<var>USER</var>] [<var>START</var>...]<var>END</var><br />
101
+ <code>git fork</code> [<code>--no-remote</code>]<br />
102
+ <code>git pull-request</code> [<code>-f</code>] [<var>TITLE</var>|<code>-i</code> <var>ISSUE</var>] [<code>-b</code> <var>BASE</var>] [<code>-h</code> <var>HEAD</var>]:</p>
103
+
104
+ <h2 id="DESCRIPTION">DESCRIPTION</h2>
105
+
106
+ <p>hub enhances various git commands to ease most common workflows with GitHub.</p>
107
+
108
+ <dl>
109
+ <dt><code>hub --noop</code> <var>COMMAND</var></dt><dd><p>Shows which command(s) would be run as a result of the current command.
110
+ Doesn't perform anything.</p></dd>
111
+ <dt><code>hub alias</code> [<code>-s</code>] <var>SHELL</var></dt><dd><p>Writes shell aliasing code for <var>SHELL</var> (<code>bash</code>, <code>sh</code>, <code>zsh</code>,
112
+ <code>csh</code>) to standard output. With the <code>-s</code> option, the output of
113
+ this command can be evaluated directly within the shell:<br />
114
+ <code>eval $(hub alias -s bash)</code></p></dd>
115
+ <dt><code>git init</code> <code>-g</code> <var>OPTIONS</var></dt><dd><p>Create a git repository as with <span class="man-ref">git-init<span class="s">(1)</span></span> and add remote <code>origin</code> at
116
+ "git@github.com:<var>USER</var>/<var>REPOSITORY</var>.git"; <var>USER</var> is your GitHub username and
117
+ <var>REPOSITORY</var> is the current working directory's basename.</p></dd>
118
+ <dt><code>git clone</code> [<code>-p</code>] <var>OPTIONS</var> [<var>USER</var><code>/</code>]<var>REPOSITORY</var> <var>DIRECTORY</var></dt><dd><p>Clone repository "git://github.com/<var>USER</var>/<var>REPOSITORY</var>.git" into
119
+ <var>DIRECTORY</var> as with <span class="man-ref">git-clone<span class="s">(1)</span></span>. When <var>USER</var>/ is omitted, assumes
120
+ your GitHub login. With <code>-p</code>, clone private repositories over SSH.
121
+ For repositories under your GitHub login, <code>-p</code> is implicit.</p></dd>
122
+ <dt><code>git remote add</code> [<code>-p</code>] <var>OPTIONS</var> <var>USER</var>[<code>/</code><var>REPOSITORY</var>]</dt><dd><p>Add remote "git://github.com/<var>USER</var>/<var>REPOSITORY</var>.git" as with
123
+ <span class="man-ref">git-remote<span class="s">(1)</span></span>. When /<var>REPOSITORY</var> is omitted, the basename of the
124
+ current working directory is used. With <code>-p</code>, use private remote
125
+ "git@github.com:<var>USER</var>/<var>REPOSITORY</var>.git". If <var>USER</var> is "origin"
126
+ then uses your GitHub login.</p></dd>
127
+ <dt><code>git remote set-url</code> [<code>-p</code>] <var>OPTIONS</var> <var>REMOTE-NAME</var> <var>USER</var>[/<var>REPOSITORY</var>]</dt><dd><p>Sets the url of remote <var>REMOTE-NAME</var> using the same rules as
128
+ <code>git remote add</code>.</p></dd>
129
+ <dt><code>git fetch</code> <var>USER-1</var>,[<var>USER-2</var>,...]</dt><dd><p>Adds missing remote(s) with <code>git remote add</code> prior to fetching. New
130
+ remotes are only added if they correspond to valid forks on GitHub.</p></dd>
131
+ <dt><code>git checkout</code> <var>PULLREQ-URL</var> [<var>BRANCH</var>]</dt><dd><p>Checks out the head of the pull request as a local branch, to allow for
132
+ reviewing, rebasing and otherwise cleaning up the commits in the pull
133
+ request before merging. The name of the local branch can explicitly be
134
+ set with <var>BRANCH</var>.</p></dd>
135
+ <dt><code>git cherry-pick</code> <var>GITHUB-REF</var></dt><dd><p>Cherry-pick a commit from a fork using either full URL to the commit
136
+ or GitHub-flavored Markdown notation, which is <code>user@sha</code>. If the remote
137
+ doesn't yet exist, it will be added. A <code>git fetch &lt;user></code> is issued
138
+ prior to the cherry-pick attempt.</p></dd>
139
+ <dt><code>git [am|apply]</code> <var>GITHUB-URL</var></dt><dd><p>Downloads the patch file for the pull request or commit at the URL and
140
+ applies that patch from disk with <code>git am</code> or <code>git apply</code>. Similar to
141
+ <code>cherry-pick</code>, but doesn't add new remotes. <code>git am</code> creates commits while
142
+ preserving authorship info while <code>apply</code> only applies the patch to the
143
+ working copy.</p></dd>
144
+ <dt><code>git push</code> <var>REMOTE-1</var>,<var>REMOTE-2</var>,...,<var>REMOTE-N</var> [<var>REF</var>]</dt><dd><p>Push <var>REF</var> to each of <var>REMOTE-1</var> through <var>REMOTE-N</var> by executing
145
+ multiple <code>git push</code> commands.</p></dd>
146
+ <dt><code>git submodule add</code> [<code>-p</code>] <var>OPTIONS</var> [<var>USER</var>/]<var>REPOSITORY</var> <var>DIRECTORY</var></dt><dd><p>Submodule repository "git://github.com/<var>USER</var>/<var>REPOSITORY</var>.git" into
147
+ <var>DIRECTORY</var> as with <span class="man-ref">git-submodule<span class="s">(1)</span></span>. When <var>USER</var>/ is omitted, assumes
148
+ your GitHub login. With <code>-p</code>, use private remote
149
+ "git@github.com:<var>USER</var>/<var>REPOSITORY</var>.git".</p></dd>
150
+ <dt><code>git help</code></dt><dd><p>Display enhanced <span class="man-ref">git-help<span class="s">(1)</span></span>.</p></dd>
151
+ </dl>
152
+
153
+
154
+ <p>hub also adds some custom commands that are otherwise not present in git:</p>
155
+
156
+ <dl>
157
+ <dt><code>git create</code> [<var>NAME</var>] [<code>-p</code>] [<code>-d</code> <var>DESCRIPTION</var>] [<code>-h</code> <var>HOMEPAGE</var>]</dt><dd><p>Create a new public GitHub repository from the current git
158
+ repository and add remote <code>origin</code> at
159
+ "git@github.com:<var>USER</var>/<var>REPOSITORY</var>.git"; <var>USER</var> is your GitHub
160
+ username and <var>REPOSITORY</var> is the current working directory name.
161
+ To explicitly name the new repository, pass in <var>NAME</var>, optionally in
162
+ <var>ORGANIZATION</var>/<var>NAME</var> form to create under an organization you're a
163
+ member of. With <code>-p</code>, create a private repository, and with <code>-d</code> and <code>-h</code>
164
+ set the repository's description and homepage URL, respectively.</p></dd>
165
+ <dt><code>git browse</code> [<code>-u</code>] [[<var>USER</var><code>/</code>]<var>REPOSITORY</var>] [SUBPAGE]</dt><dd><p>Open repository's GitHub page in the system's default web browser using
166
+ <code>open(1)</code> or the <code>BROWSER</code> env variable. If the repository isn't
167
+ specified, <code>browse</code> opens the page of the repository found in the current
168
+ directory. If SUBPAGE is specified, the browser will open on the specified
169
+ subpage: one of "wiki", "commits", "issues" or other (the default is
170
+ "tree").</p></dd>
171
+ <dt><code>git compare</code> [<code>-u</code>] [<var>USER</var>] [<var>START</var>...]<var>END</var></dt><dd><p>Open a GitHub compare view page in the system's default web browser.
172
+ <var>START</var> to <var>END</var> are branch names, tag names, or commit SHA1s specifying
173
+ the range of history to compare. If a range with two dots (<code>a..b</code>) is given,
174
+ it will be transformed into one with three dots. If <var>START</var> is omitted,
175
+ GitHub will compare against the base branch (the default is "master").</p></dd>
176
+ <dt><code>git fork</code> [<code>--no-remote</code>]</dt><dd><p>Forks the original project (referenced by "origin" remote) on GitHub and
177
+ adds a new remote for it under your username. Requires <code>github.token</code> to
178
+ be set (see CONFIGURATION).</p></dd>
179
+ <dt><code>git pull-request</code> [<code>-f</code>] [<var>TITLE</var>|<code>-i</code> <var>ISSUE</var>] [<code>-b</code> <var>BASE</var>] [<code>-h</code> <var>HEAD</var>]</dt><dd><p><code>git pull-request</code> [<code>-f</code>] <var>ISSUE-URL</var> [<code>-h</code> <var>HEAD</var>]
180
+ Opens a pull request on GitHub for the project that the "origin" remote
181
+ points to. The default head of the pull request is the current branch.
182
+ Both base and head of the pull request can be explicitly given in one of
183
+ the following formats: "branch", "owner:branch", "owner/repo:branch".
184
+ This command will abort operation if it detects that the current topic
185
+ branch has local commits that are not yet pushed to its upstream branch
186
+ on the remote. To skip this check, use <code>-f</code>.</p>
187
+
188
+ <p>If <var>TITLE</var> is omitted, a text editor will open in which title and body of
189
+ the pull request can be entered in the same manner as git commit message.</p>
190
+
191
+ <p>If instead of normal <var>TITLE</var> an issue number is given with <code>-i</code>, the pull
192
+ request will be attached to an existing GitHub issue. Alternatively, instead
193
+ of title you can paste a full URL to an issue on GitHub.</p></dd>
194
+ </dl>
195
+
196
+
197
+ <h2 id="CONFIGURATION">CONFIGURATION</h2>
198
+
199
+ <p>Use <span class="man-ref">git-config<span class="s">(1)</span></span> to display the currently configured GitHub username:</p>
200
+
201
+ <pre><code>$ git config --global github.user
202
+ </code></pre>
203
+
204
+ <p>Or, set the GitHub username and token with:</p>
205
+
206
+ <pre><code>$ git config --global github.user &lt;username>
207
+ $ git config --global github.token &lt;token>
208
+ </code></pre>
209
+
210
+ <p>You can override these values with <var>GITHUB_USER</var> and <var>GITHUB_TOKEN</var>
211
+ environment variables.</p>
212
+
213
+ <p>See <a href="http://help.github.com/set-your-user-name-email-and-github-token/" data-bare-link="true">http://help.github.com/set-your-user-name-email-and-github-token/</a> for more
214
+ information.</p>
215
+
216
+ <p>If you prefer the HTTPS protocol for GitHub repositories, you can set
217
+ "hub.protocol" to "https". This will affect <code>clone</code>, <code>fork</code>, <code>remote add</code>
218
+ and other operations that expand references to GitHub repositories as full
219
+ URLs that otherwise use git and ssh protocols.</p>
220
+
221
+ <pre><code>$ git config --global hub.protocol https
222
+ </code></pre>
223
+
224
+ <h2 id="EXAMPLES">EXAMPLES</h2>
225
+
226
+ <h3 id="git-clone">git clone</h3>
227
+
228
+ <pre><code>$ git clone schacon/ticgit
229
+ &gt; git clone git://github.com/schacon/ticgit.git
230
+
231
+ $ git clone -p schacon/ticgit
232
+ &gt; git clone git@github.com:schacon/ticgit.git
233
+
234
+ $ git clone resque
235
+ &gt; git clone git@github.com/YOUR_USER/resque.git
236
+ </code></pre>
237
+
238
+ <h3 id="git-remote-add">git remote add</h3>
239
+
240
+ <pre><code>$ git remote add rtomayko
241
+ &gt; git remote add rtomayko git://github.com/rtomayko/CURRENT_REPO.git
242
+
243
+ $ git remote add -p rtomayko
244
+ &gt; git remote add rtomayko git@github.com:rtomayko/CURRENT_REPO.git
245
+
246
+ $ git remote add origin
247
+ &gt; git remote add origin git://github.com/YOUR_USER/CURRENT_REPO.git
248
+ </code></pre>
249
+
250
+ <h3 id="git-fetch">git fetch</h3>
251
+
252
+ <pre><code>$ git fetch mislav
253
+ &gt; git remote add mislav git://github.com/mislav/REPO.git
254
+ &gt; git fetch mislav
255
+
256
+ $ git fetch mislav,xoebus
257
+ &gt; git remote add mislav ...
258
+ &gt; git remote add xoebus ...
259
+ &gt; git fetch --multiple mislav xoebus
260
+ </code></pre>
261
+
262
+ <h3 id="git-cherry-pick">git cherry-pick</h3>
263
+
264
+ <pre><code>$ git cherry-pick http://github.com/mislav/REPO/commit/SHA
265
+ &gt; git remote add -f mislav git://github.com/mislav/REPO.git
266
+ &gt; git cherry-pick SHA
267
+
268
+ $ git cherry-pick mislav@SHA
269
+ &gt; git remote add -f mislav git://github.com/mislav/CURRENT_REPO.git
270
+ &gt; git cherry-pick SHA
271
+
272
+ $ git cherry-pick mislav@SHA
273
+ &gt; git fetch mislav
274
+ &gt; git cherry-pick SHA
275
+ </code></pre>
276
+
277
+ <h3 id="git-am-git-apply">git am, git apply</h3>
278
+
279
+ <pre><code>$ git am https://github.com/defunkt/hub/pull/55
280
+ &gt; curl https://github.com/defunkt/hub/pull/55.patch -o /tmp/55.patch
281
+ &gt; git am /tmp/55.patch
282
+
283
+ $ git am --ignore-whitespace https://github.com/davidbalbert/hub/commit/fdb9921
284
+ &gt; curl https://github.com/davidbalbert/hub/commit/fdb9921.patch -o /tmp/fdb9921.patch
285
+ &gt; git am --ignore-whitespace /tmp/fdb9921.patch
286
+
287
+ $ git apply https://gist.github.com/8da7fb575debd88c54cf
288
+ &gt; curl https://gist.github.com/8da7fb575debd88c54cf.txt -o /tmp/gist-8da7fb575debd88c54cf.txt
289
+ &gt; git apply /tmp/gist-8da7fb575debd88c54cf.txt
290
+ </code></pre>
291
+
292
+ <h3 id="git-fork">git fork</h3>
293
+
294
+ <pre><code>$ git fork
295
+ [ repo forked on GitHub ]
296
+ &gt; git remote add -f YOUR_USER git@github.com:YOUR_USER/CURRENT_REPO.git
297
+ </code></pre>
298
+
299
+ <h3 id="git-pull-request">git pull-request</h3>
300
+
301
+ <pre><code># while on a topic branch called "feature":
302
+ $ git pull-request
303
+ [ opens text editor to edit title &amp; body for the request ]
304
+ [ opened pull request on GitHub for "YOUR_USER:feature" ]
305
+
306
+ # explicit title, pull base &amp; head:
307
+ $ git pull-request "I've implemented feature X" -b defunkt:master -h mislav:feature
308
+
309
+ $ git pull-request -i 123
310
+ [ attached pull request to issue #123 ]
311
+ </code></pre>
312
+
313
+ <h3 id="git-checkout">git checkout</h3>
314
+
315
+ <pre><code># $ git checkout https://github.com/defunkt/hub/pull/73
316
+ # &gt; git remote add -f -t feature git://github:com/mislav/hub.git
317
+ # &gt; git checkout -b mislav-feature mislav/feature
318
+
319
+ # $ git checkout https://github.com/defunkt/hub/pull/73 custom-branch-name
320
+ </code></pre>
321
+
322
+ <h3 id="git-create">git create</h3>
323
+
324
+ <pre><code>$ git create
325
+ [ repo created on GitHub ]
326
+ &gt; git remote add origin git@github.com:YOUR_USER/CURRENT_REPO.git
327
+
328
+ # with description:
329
+ $ git create -d 'It shall be mine, all mine!'
330
+
331
+ $ git create recipes
332
+ [ repo created on GitHub ]
333
+ &gt; git remote add origin git@github.com:YOUR_USER/recipes.git
334
+
335
+ $ git create sinatra/recipes
336
+ [ repo created in GitHub organization ]
337
+ &gt; git remote add origin git@github.com:sinatra/recipes.git
338
+ </code></pre>
339
+
340
+ <h3 id="git-init">git init</h3>
341
+
342
+ <pre><code>$ git init -g
343
+ &gt; git init
344
+ &gt; git remote add origin git@github.com:YOUR_USER/REPO.git
345
+ </code></pre>
346
+
347
+ <h3 id="git-push">git push</h3>
348
+
349
+ <pre><code>$ git push origin,staging,qa bert_timeout
350
+ &gt; git push origin bert_timeout
351
+ &gt; git push staging bert_timeout
352
+ &gt; git push qa bert_timeout
353
+ </code></pre>
354
+
355
+ <h3 id="git-browse">git browse</h3>
356
+
357
+ <pre><code>$ git browse
358
+ &gt; open https://github.com/YOUR_USER/CURRENT_REPO
359
+
360
+ $ git browse -- commit/SHA
361
+ &gt; open https://github.com/YOUR_USER/CURRENT_REPO/commit/SHA
362
+
363
+ $ git browse -- issues
364
+ &gt; open https://github.com/YOUR_USER/CURRENT_REPO/issues
365
+
366
+ $ git browse schacon/ticgit
367
+ &gt; open https://github.com/schacon/ticgit
368
+
369
+ $ git browse schacon/ticgit commit/SHA
370
+ &gt; open https://github.com/schacon/ticgit/commit/SHA
371
+
372
+ $ git browse resque
373
+ &gt; open https://github.com/YOUR_USER/resque
374
+
375
+ $ git browse resque network
376
+ &gt; open https://github.com/YOUR_USER/resque/network
377
+ </code></pre>
378
+
379
+ <h3 id="git-compare">git compare</h3>
380
+
381
+ <pre><code>$ git compare refactor
382
+ &gt; open https://github.com/CURRENT_REPO/compare/refactor
383
+
384
+ $ git compare 1.0..1.1
385
+ &gt; open https://github.com/CURRENT_REPO/compare/1.0...1.1
386
+
387
+ $ git compare -u fix
388
+ &gt; (https://github.com/CURRENT_REPO/compare/fix)
389
+
390
+ $ git compare other-user patch
391
+ &gt; open https://github.com/other-user/REPO/compare/patch
392
+ </code></pre>
393
+
394
+ <h3 id="git-submodule">git submodule</h3>
395
+
396
+ <pre><code>$ hub submodule add wycats/bundler vendor/bundler
397
+ &gt; git submodule add git://github.com/wycats/bundler.git vendor/bundler
398
+
399
+ $ hub submodule add -p wycats/bundler vendor/bundler
400
+ &gt; git submodule add git@github.com:wycats/bundler.git vendor/bundler
401
+
402
+ $ hub submodule add -b ryppl ryppl/pip vendor/pip
403
+ &gt; git submodule add -b ryppl git://github.com/ryppl/pip.git vendor/pip
404
+ </code></pre>
405
+
406
+ <h3 id="git-help">git help</h3>
407
+
408
+ <pre><code>$ git help
409
+ &gt; (improved git help)
410
+ $ git help hub
411
+ &gt; (hub man page)
412
+ </code></pre>
413
+
414
+ <h2 id="BUGS">BUGS</h2>
415
+
416
+ <p><a href="https://github.com/defunkt/hub/issues" data-bare-link="true">https://github.com/defunkt/hub/issues</a></p>
417
+
418
+ <h2 id="AUTHORS">AUTHORS</h2>
419
+
420
+ <p><a href="https://github.com/defunkt/hub/contributors" data-bare-link="true">https://github.com/defunkt/hub/contributors</a></p>
421
+
422
+ <h2 id="SEE-ALSO">SEE ALSO</h2>
423
+
424
+ <p><span class="man-ref">git<span class="s">(1)</span></span>, <span class="man-ref">git-clone<span class="s">(1)</span></span>, <span class="man-ref">git-remote<span class="s">(1)</span></span>, <span class="man-ref">git-init<span class="s">(1)</span></span>,
425
+ <a href="http://github.com" data-bare-link="true">http://github.com</a>,
426
+ <a href="https://github.com/defunkt/hub" data-bare-link="true">https://github.com/defunkt/hub</a></p>
427
+
428
+
429
+ <ol class='man-decor man-foot man foot'>
430
+ <li class='tl'>DEFUNKT</li>
431
+ <li class='tc'>November 2011</li>
432
+ <li class='tr'>hub(1)</li>
433
+ </ol>
434
+
435
+ </div>
436
+ </body>
437
+ </html>