git-scripts 0.1.0
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.
- data/COPYING +21 -0
- data/README.md +124 -0
- data/Rakefile +35 -0
- data/bash_completion.sh +33 -0
- data/bin/feature +191 -0
- data/bin/hotfix +142 -0
- data/lib/git.rb +170 -0
- data/lib/github.rb +190 -0
- data/lib/helpers.rb +137 -0
- data/man/feature-clean.1 +28 -0
- data/man/feature-clean.1.html +115 -0
- data/man/feature-clean.1.markdown +53 -0
- data/man/feature-clean.1.ronn +26 -0
- data/man/feature-finish.1 +19 -0
- data/man/feature-finish.1.html +107 -0
- data/man/feature-finish.1.markdown +47 -0
- data/man/feature-finish.1.ronn +21 -0
- data/man/feature-github-test.1 +19 -0
- data/man/feature-github-test.1.html +105 -0
- data/man/feature-github-test.1.markdown +45 -0
- data/man/feature-github-test.1.ronn +19 -0
- data/man/feature-list.1 +19 -0
- data/man/feature-list.1.html +106 -0
- data/man/feature-list.1.markdown +46 -0
- data/man/feature-list.1.ronn +20 -0
- data/man/feature-merge.1 +22 -0
- data/man/feature-merge.1.html +110 -0
- data/man/feature-merge.1.markdown +50 -0
- data/man/feature-merge.1.ronn +24 -0
- data/man/feature-start.1 +19 -0
- data/man/feature-start.1.html +105 -0
- data/man/feature-start.1.markdown +45 -0
- data/man/feature-start.1.ronn +19 -0
- data/man/feature-stashes.1 +28 -0
- data/man/feature-stashes.1.html +117 -0
- data/man/feature-stashes.1.markdown +55 -0
- data/man/feature-stashes.1.ronn +28 -0
- data/man/feature-status.1 +22 -0
- data/man/feature-status.1.html +108 -0
- data/man/feature-status.1.markdown +48 -0
- data/man/feature-status.1.ronn +22 -0
- data/man/feature-switch.1 +25 -0
- data/man/feature-switch.1.html +113 -0
- data/man/feature-switch.1.markdown +51 -0
- data/man/feature-switch.1.ronn +24 -0
- data/man/feature.1 +61 -0
- data/man/feature.1.html +123 -0
- data/man/feature.1.markdown +70 -0
- data/man/feature.1.ronn +43 -0
- data/man/feature.html +140 -0
- data/man/hotfix-finish.1 +19 -0
- data/man/hotfix-finish.1.html +107 -0
- data/man/hotfix-finish.1.markdown +47 -0
- data/man/hotfix-finish.1.ronn +21 -0
- data/man/hotfix-list.1 +19 -0
- data/man/hotfix-list.1.html +106 -0
- data/man/hotfix-list.1.markdown +46 -0
- data/man/hotfix-list.1.ronn +20 -0
- data/man/hotfix-merge.1 +22 -0
- data/man/hotfix-merge.1.html +110 -0
- data/man/hotfix-merge.1.markdown +50 -0
- data/man/hotfix-merge.1.ronn +24 -0
- data/man/hotfix-start.1 +19 -0
- data/man/hotfix-start.1.html +105 -0
- data/man/hotfix-start.1.markdown +45 -0
- data/man/hotfix-start.1.ronn +19 -0
- data/man/hotfix-switch.1 +19 -0
- data/man/hotfix-switch.1.html +105 -0
- data/man/hotfix-switch.1.markdown +45 -0
- data/man/hotfix-switch.1.ronn +19 -0
- data/man/hotfix.1 +41 -0
- data/man/hotfix.1.html +118 -0
- data/man/hotfix.1.markdown +60 -0
- data/man/hotfix.1.ronn +33 -0
- data/man/index.html +7 -0
- data/man/index.txt +21 -0
- metadata +177 -0
data/man/feature.1.ronn
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
feature(1) - Perform actions on a git feature branch.
|
2
|
+
==========================================================
|
3
|
+
|
4
|
+
## SYNOPSIS
|
5
|
+
|
6
|
+
`feature` <command> [<args>]
|
7
|
+
|
8
|
+
## DESCRIPTION
|
9
|
+
|
10
|
+
**Feature** is a helper script for a modified git-flow model, in which it and
|
11
|
+
`hotfix` are the primary actors.
|
12
|
+
|
13
|
+
## COMMANDS
|
14
|
+
|
15
|
+
* feature-list(1):
|
16
|
+
List the current branch and any available feature branches.
|
17
|
+
* feature-start(1):
|
18
|
+
Start a new feature branch.
|
19
|
+
* feature-switch(1):
|
20
|
+
Switch to another feature branch.
|
21
|
+
* feature-finish(1):
|
22
|
+
Finish this feature branch (push and open a pull request).
|
23
|
+
* feature-merge(1):
|
24
|
+
Merge a feature branch into the development branch.
|
25
|
+
* feature-pull(1):
|
26
|
+
Pull remote updates into this branch.
|
27
|
+
* feature-status(1):
|
28
|
+
Determine if the current branch is up-to-date with the remote branch.
|
29
|
+
* feature-stashes(1):
|
30
|
+
Show stashes saved on the current branch.
|
31
|
+
* feature-clean(1):
|
32
|
+
Remove untracked files and submodules.
|
33
|
+
* feature-github-test(1):
|
34
|
+
Test Github authentication.
|
35
|
+
|
36
|
+
## COPYRIGHT
|
37
|
+
|
38
|
+
Copyright (c) 2012-2013 iFixit.
|
39
|
+
|
40
|
+
## SEE ALSO
|
41
|
+
|
42
|
+
hotfix(1), git(1)
|
43
|
+
|
data/man/feature.html
ADDED
@@ -0,0 +1,140 @@
|
|
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>feature</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
|
+
</div>
|
58
|
+
|
59
|
+
<ol class='man-decor man-head man head'>
|
60
|
+
<li class='tl'>feature</li>
|
61
|
+
<li class='tc'></li>
|
62
|
+
<li class='tr'>feature</li>
|
63
|
+
</ol>
|
64
|
+
|
65
|
+
<h2 id="NAME">NAME</h2>
|
66
|
+
<p class="man-name">
|
67
|
+
<code>feature</code>
|
68
|
+
</p>
|
69
|
+
<p>.\" generated with Ronn/v0.7.3
|
70
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
71
|
+
.
|
72
|
+
.TH "FEATURE" "1" "February 2013" "iFixit" ""
|
73
|
+
.
|
74
|
+
.SH "NAME"
|
75
|
+
\fBfeature\fR - Perform actions on a git feature branch.
|
76
|
+
.
|
77
|
+
.SH "SYNOPSIS"
|
78
|
+
\fBfeature\fR \fIcommand\fR [\fIargs\fR]
|
79
|
+
.
|
80
|
+
.SH "DESCRIPTION"
|
81
|
+
\fBFeature\fR is a helper script for a modified git-flow model, in which it and \fBhotfix\fR are the primary actors.
|
82
|
+
.
|
83
|
+
.SH "COMMANDS"
|
84
|
+
.
|
85
|
+
.TP
|
86
|
+
\<span class="man-ref">fBfeature-list<span class="s">(1)</span></span>\fR
|
87
|
+
List the current branch and any available feature branches.
|
88
|
+
.
|
89
|
+
.TP
|
90
|
+
\<span class="man-ref">fBfeature-start<span class="s">(1)</span></span>\fR
|
91
|
+
Start a new feature branch.
|
92
|
+
.
|
93
|
+
.TP
|
94
|
+
\<span class="man-ref">fBfeature-switch<span class="s">(1)</span></span>\fR
|
95
|
+
Switch to another feature branch.
|
96
|
+
.
|
97
|
+
.TP
|
98
|
+
\<span class="man-ref">fBfeature-finish<span class="s">(1)</span></span>\fR
|
99
|
+
Finish this feature branch (push and open a pull request).
|
100
|
+
.
|
101
|
+
.TP
|
102
|
+
\<span class="man-ref">fBfeature-merge<span class="s">(1)</span></span>\fR
|
103
|
+
Merge a feature branch into the development branch.
|
104
|
+
.
|
105
|
+
.TP
|
106
|
+
\<span class="man-ref">fBfeature-pull<span class="s">(1)</span></span>\fR
|
107
|
+
Pull remote updates into this branch.
|
108
|
+
.
|
109
|
+
.TP
|
110
|
+
\<span class="man-ref">fBfeature-status<span class="s">(1)</span></span>\fR
|
111
|
+
Determine if the current branch is up-to-date with the remote branch.
|
112
|
+
.
|
113
|
+
.TP
|
114
|
+
\<span class="man-ref">fBfeature-stashes<span class="s">(1)</span></span>\fR
|
115
|
+
Show stashes saved on the current branch.
|
116
|
+
.
|
117
|
+
.TP
|
118
|
+
\<span class="man-ref">fBfeature-clean<span class="s">(1)</span></span>\fR
|
119
|
+
Remove untracked files and submodules.
|
120
|
+
.
|
121
|
+
.TP
|
122
|
+
\<span class="man-ref">fBfeature-github-test<span class="s">(1)</span></span>\fR
|
123
|
+
Test Github authentication.
|
124
|
+
.
|
125
|
+
.SH "COPYRIGHT"
|
126
|
+
Copyright (c) 2012-2013 iFixit.
|
127
|
+
.
|
128
|
+
.SH "SEE ALSO"
|
129
|
+
<a class="man-ref" href="hotfix.1.html">hotfix<span class="s">(1)</span></a>, <a class="man-ref" href="https://www.kernel.org/pub/software/scm/git/docs/">git<span class="s">(1)</span></a></p>
|
130
|
+
|
131
|
+
|
132
|
+
<ol class='man-decor man-foot man foot'>
|
133
|
+
<li class='tl'></li>
|
134
|
+
<li class='tc'>February 2013</li>
|
135
|
+
<li class='tr'>feature</li>
|
136
|
+
</ol>
|
137
|
+
|
138
|
+
</div>
|
139
|
+
</body>
|
140
|
+
</html>
|
data/man/hotfix-finish.1
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
|
+
.
|
4
|
+
.TH "HOTFIX\-FINISH" "1" "February 2013" "iFixit" ""
|
5
|
+
.
|
6
|
+
.SH "NAME"
|
7
|
+
\fBhotfix\-finish\fR \- Finish this hotfix branch\.
|
8
|
+
.
|
9
|
+
.SH "SYNOPSIS"
|
10
|
+
\fBhotfix finish\fR \fIname\-of\-hotfix\fR
|
11
|
+
.
|
12
|
+
.SH "DESCRIPTION"
|
13
|
+
Finish the current hotfix branch\. Push all remote commits to the remote and optionally open a pull request\. If a pull request is opened, the message will default to the commit message from the last commit on the branch\.
|
14
|
+
.
|
15
|
+
.SH "COPYRIGHT"
|
16
|
+
Copyright (c) 2012\-2013 iFixit\.
|
17
|
+
.
|
18
|
+
.SH "SEE ALSO"
|
19
|
+
hotfix(1), feature\-finish(1)
|
@@ -0,0 +1,107 @@
|
|
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>hotfix-finish(1) - Finish this hotfix branch.</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
|
+
<style type='text/css' media='all'>
|
45
|
+
/* style: toc */
|
46
|
+
.man-navigation {display:block !important;position:fixed;top:0;left:113ex;height:100%;width:100%;padding:48px 0 0 0;border-left:1px solid #dbdbdb;background:#eee}
|
47
|
+
.man-navigation a,.man-navigation a:hover,.man-navigation a:link,.man-navigation a:visited {display:block;margin:0;padding:5px 2px 5px 30px;color:#999;text-decoration:none}
|
48
|
+
.man-navigation a:hover {color:#111;text-decoration:underline}
|
49
|
+
</style>
|
50
|
+
</head>
|
51
|
+
<!--
|
52
|
+
The following styles are deprecated and will be removed at some point:
|
53
|
+
div#man, div#man ol.man, div#man ol.head, div#man ol.man.
|
54
|
+
|
55
|
+
The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
|
56
|
+
.man-navigation should be used instead.
|
57
|
+
-->
|
58
|
+
<body id='manpage'>
|
59
|
+
<div class='mp' id='man'>
|
60
|
+
|
61
|
+
<div class='man-navigation' style='display:none'>
|
62
|
+
<a href="#NAME">NAME</a>
|
63
|
+
<a href="#SYNOPSIS">SYNOPSIS</a>
|
64
|
+
<a href="#DESCRIPTION">DESCRIPTION</a>
|
65
|
+
<a href="#COPYRIGHT">COPYRIGHT</a>
|
66
|
+
<a href="#SEE-ALSO">SEE ALSO</a>
|
67
|
+
</div>
|
68
|
+
|
69
|
+
<ol class='man-decor man-head man head'>
|
70
|
+
<li class='tl'>hotfix-finish(1)</li>
|
71
|
+
<li class='tc'></li>
|
72
|
+
<li class='tr'>hotfix-finish(1)</li>
|
73
|
+
</ol>
|
74
|
+
|
75
|
+
<h2 id="NAME">NAME</h2>
|
76
|
+
<p class="man-name">
|
77
|
+
<code>hotfix-finish</code> - <span class="man-whatis">Finish this hotfix branch.</span>
|
78
|
+
</p>
|
79
|
+
|
80
|
+
<h2 id="SYNOPSIS">SYNOPSIS</h2>
|
81
|
+
|
82
|
+
<p><code>hotfix finish</code> <var>name-of-hotfix</var></p>
|
83
|
+
|
84
|
+
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
85
|
+
|
86
|
+
<p>Finish the current hotfix branch. Push all remote commits to the remote and
|
87
|
+
optionally open a pull request. If a pull request is opened, the message will
|
88
|
+
default to the commit message from the last commit on the branch.</p>
|
89
|
+
|
90
|
+
<h2 id="COPYRIGHT">COPYRIGHT</h2>
|
91
|
+
|
92
|
+
<p>Copyright (c) 2012-2013 iFixit.</p>
|
93
|
+
|
94
|
+
<h2 id="SEE-ALSO">SEE ALSO</h2>
|
95
|
+
|
96
|
+
<p><a class="man-ref" href="hotfix.1.html">hotfix<span class="s">(1)</span></a>, <a class="man-ref" href="feature-finish.1.html">feature-finish<span class="s">(1)</span></a></p>
|
97
|
+
|
98
|
+
|
99
|
+
<ol class='man-decor man-foot man foot'>
|
100
|
+
<li class='tl'>iFixit</li>
|
101
|
+
<li class='tc'>February 2013</li>
|
102
|
+
<li class='tr'>hotfix-finish(1)</li>
|
103
|
+
</ol>
|
104
|
+
|
105
|
+
</div>
|
106
|
+
</body>
|
107
|
+
</html>
|
@@ -0,0 +1,47 @@
|
|
1
|
+
hotfix-finish(1) - Finish this hotfix branch.
|
2
|
+
=============================================
|
3
|
+
|
4
|
+
## SYNOPSIS
|
5
|
+
|
6
|
+
`hotfix finish` <var>name-of-hotfix</var>
|
7
|
+
|
8
|
+
## DESCRIPTION
|
9
|
+
|
10
|
+
Finish the current hotfix branch. Push all remote commits to the remote and
|
11
|
+
optionally open a pull request. If a pull request is opened, the message will
|
12
|
+
default to the commit message from the last commit on the branch.
|
13
|
+
|
14
|
+
## COPYRIGHT
|
15
|
+
|
16
|
+
Copyright (c) 2012-2013 iFixit.
|
17
|
+
|
18
|
+
## SEE ALSO
|
19
|
+
|
20
|
+
hotfix(1), feature-finish(1)
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
[SYNOPSIS]: #SYNOPSIS "SYNOPSIS"
|
25
|
+
[DESCRIPTION]: #DESCRIPTION "DESCRIPTION"
|
26
|
+
[COPYRIGHT]: #COPYRIGHT "COPYRIGHT"
|
27
|
+
[SEE ALSO]: #SEE-ALSO "SEE ALSO"
|
28
|
+
|
29
|
+
|
30
|
+
[feature(1)]: feature.1.html
|
31
|
+
[feature-list(1)]: feature-list.1.html
|
32
|
+
[feature-start(1)]: feature-start.1.html
|
33
|
+
[feature-switch(1)]: feature-switch.1.html
|
34
|
+
[feature-finish(1)]: feature-finish.1.html
|
35
|
+
[feature-merge(1)]: feature-merge.1.html
|
36
|
+
[feature-pull(1)]: feature-pull.1.html
|
37
|
+
[feature-status(1)]: feature-status.1.html
|
38
|
+
[feature-stashes(1)]: feature-stashes.1.html
|
39
|
+
[feature-clean(1)]: feature-clean.1.html
|
40
|
+
[feature-github-test(1)]: feature-github-test.1.html
|
41
|
+
[hotfix(1)]: hotfix.1.html
|
42
|
+
[hotfix-list(1)]: hotfix-list.1.html
|
43
|
+
[hotfix-start(1)]: hotfix-start.1.html
|
44
|
+
[hotfix-switch(1)]: hotfix-switch.1.html
|
45
|
+
[hotfix-finish(1)]: hotfix-finish.1.html
|
46
|
+
[hotfix-merge(1)]: hotfix-merge.1.html
|
47
|
+
[git(1)]: https://www.kernel.org/pub/software/scm/git/docs/
|
@@ -0,0 +1,21 @@
|
|
1
|
+
hotfix-finish(1) - Finish this hotfix branch.
|
2
|
+
=============================================
|
3
|
+
|
4
|
+
## SYNOPSIS
|
5
|
+
|
6
|
+
`hotfix finish` <name-of-hotfix>
|
7
|
+
|
8
|
+
## DESCRIPTION
|
9
|
+
|
10
|
+
Finish the current hotfix branch. Push all remote commits to the remote and
|
11
|
+
optionally open a pull request. If a pull request is opened, the message will
|
12
|
+
default to the commit message from the last commit on the branch.
|
13
|
+
|
14
|
+
## COPYRIGHT
|
15
|
+
|
16
|
+
Copyright (c) 2012-2013 iFixit.
|
17
|
+
|
18
|
+
## SEE ALSO
|
19
|
+
|
20
|
+
hotfix(1), feature-finish(1)
|
21
|
+
|
data/man/hotfix-list.1
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
|
+
.
|
4
|
+
.TH "HOTFIX\-LIST" "1" "February 2013" "iFixit" ""
|
5
|
+
.
|
6
|
+
.SH "NAME"
|
7
|
+
\fBhotfix\-list\fR \- Lists the current branch and any available hotfix branches\.
|
8
|
+
.
|
9
|
+
.SH "SYNOPSIS"
|
10
|
+
\fBhotfix list\fR
|
11
|
+
.
|
12
|
+
.SH "DESCRIPTION"
|
13
|
+
Lists the current branch and any available hotfix branches\. Shows the author, hash, and relative time of last commit on each branch\.
|
14
|
+
.
|
15
|
+
.SH "COPYRIGHT"
|
16
|
+
Copyright (c) 2012\-2013 iFixit\.
|
17
|
+
.
|
18
|
+
.SH "SEE ALSO"
|
19
|
+
hotfix(1), feature\-list(1)
|
@@ -0,0 +1,106 @@
|
|
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>hotfix-list(1) - Lists the current branch and any available hotfix branches.</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
|
+
<style type='text/css' media='all'>
|
45
|
+
/* style: toc */
|
46
|
+
.man-navigation {display:block !important;position:fixed;top:0;left:113ex;height:100%;width:100%;padding:48px 0 0 0;border-left:1px solid #dbdbdb;background:#eee}
|
47
|
+
.man-navigation a,.man-navigation a:hover,.man-navigation a:link,.man-navigation a:visited {display:block;margin:0;padding:5px 2px 5px 30px;color:#999;text-decoration:none}
|
48
|
+
.man-navigation a:hover {color:#111;text-decoration:underline}
|
49
|
+
</style>
|
50
|
+
</head>
|
51
|
+
<!--
|
52
|
+
The following styles are deprecated and will be removed at some point:
|
53
|
+
div#man, div#man ol.man, div#man ol.head, div#man ol.man.
|
54
|
+
|
55
|
+
The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
|
56
|
+
.man-navigation should be used instead.
|
57
|
+
-->
|
58
|
+
<body id='manpage'>
|
59
|
+
<div class='mp' id='man'>
|
60
|
+
|
61
|
+
<div class='man-navigation' style='display:none'>
|
62
|
+
<a href="#NAME">NAME</a>
|
63
|
+
<a href="#SYNOPSIS">SYNOPSIS</a>
|
64
|
+
<a href="#DESCRIPTION">DESCRIPTION</a>
|
65
|
+
<a href="#COPYRIGHT">COPYRIGHT</a>
|
66
|
+
<a href="#SEE-ALSO">SEE ALSO</a>
|
67
|
+
</div>
|
68
|
+
|
69
|
+
<ol class='man-decor man-head man head'>
|
70
|
+
<li class='tl'>hotfix-list(1)</li>
|
71
|
+
<li class='tc'></li>
|
72
|
+
<li class='tr'>hotfix-list(1)</li>
|
73
|
+
</ol>
|
74
|
+
|
75
|
+
<h2 id="NAME">NAME</h2>
|
76
|
+
<p class="man-name">
|
77
|
+
<code>hotfix-list</code> - <span class="man-whatis">Lists the current branch and any available hotfix branches.</span>
|
78
|
+
</p>
|
79
|
+
|
80
|
+
<h2 id="SYNOPSIS">SYNOPSIS</h2>
|
81
|
+
|
82
|
+
<p><code>hotfix list</code></p>
|
83
|
+
|
84
|
+
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
85
|
+
|
86
|
+
<p>Lists the current branch and any available hotfix branches. Shows the author,
|
87
|
+
hash, and relative time of last commit on each branch.</p>
|
88
|
+
|
89
|
+
<h2 id="COPYRIGHT">COPYRIGHT</h2>
|
90
|
+
|
91
|
+
<p>Copyright (c) 2012-2013 iFixit.</p>
|
92
|
+
|
93
|
+
<h2 id="SEE-ALSO">SEE ALSO</h2>
|
94
|
+
|
95
|
+
<p><a class="man-ref" href="hotfix.1.html">hotfix<span class="s">(1)</span></a>, <a class="man-ref" href="feature-list.1.html">feature-list<span class="s">(1)</span></a></p>
|
96
|
+
|
97
|
+
|
98
|
+
<ol class='man-decor man-foot man foot'>
|
99
|
+
<li class='tl'>iFixit</li>
|
100
|
+
<li class='tc'>February 2013</li>
|
101
|
+
<li class='tr'>hotfix-list(1)</li>
|
102
|
+
</ol>
|
103
|
+
|
104
|
+
</div>
|
105
|
+
</body>
|
106
|
+
</html>
|
@@ -0,0 +1,46 @@
|
|
1
|
+
hotfix-list(1) - Lists the current branch and any available hotfix branches.
|
2
|
+
==============================================================================
|
3
|
+
|
4
|
+
## SYNOPSIS
|
5
|
+
|
6
|
+
`hotfix list`
|
7
|
+
|
8
|
+
## DESCRIPTION
|
9
|
+
|
10
|
+
Lists the current branch and any available hotfix branches. Shows the author,
|
11
|
+
hash, and relative time of last commit on each branch.
|
12
|
+
|
13
|
+
## COPYRIGHT
|
14
|
+
|
15
|
+
Copyright (c) 2012-2013 iFixit.
|
16
|
+
|
17
|
+
## SEE ALSO
|
18
|
+
|
19
|
+
hotfix(1), feature-list(1)
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
[SYNOPSIS]: #SYNOPSIS "SYNOPSIS"
|
24
|
+
[DESCRIPTION]: #DESCRIPTION "DESCRIPTION"
|
25
|
+
[COPYRIGHT]: #COPYRIGHT "COPYRIGHT"
|
26
|
+
[SEE ALSO]: #SEE-ALSO "SEE ALSO"
|
27
|
+
|
28
|
+
|
29
|
+
[feature(1)]: feature.1.html
|
30
|
+
[feature-list(1)]: feature-list.1.html
|
31
|
+
[feature-start(1)]: feature-start.1.html
|
32
|
+
[feature-switch(1)]: feature-switch.1.html
|
33
|
+
[feature-finish(1)]: feature-finish.1.html
|
34
|
+
[feature-merge(1)]: feature-merge.1.html
|
35
|
+
[feature-pull(1)]: feature-pull.1.html
|
36
|
+
[feature-status(1)]: feature-status.1.html
|
37
|
+
[feature-stashes(1)]: feature-stashes.1.html
|
38
|
+
[feature-clean(1)]: feature-clean.1.html
|
39
|
+
[feature-github-test(1)]: feature-github-test.1.html
|
40
|
+
[hotfix(1)]: hotfix.1.html
|
41
|
+
[hotfix-list(1)]: hotfix-list.1.html
|
42
|
+
[hotfix-start(1)]: hotfix-start.1.html
|
43
|
+
[hotfix-switch(1)]: hotfix-switch.1.html
|
44
|
+
[hotfix-finish(1)]: hotfix-finish.1.html
|
45
|
+
[hotfix-merge(1)]: hotfix-merge.1.html
|
46
|
+
[git(1)]: https://www.kernel.org/pub/software/scm/git/docs/
|
@@ -0,0 +1,20 @@
|
|
1
|
+
hotfix-list(1) - Lists the current branch and any available hotfix branches.
|
2
|
+
==============================================================================
|
3
|
+
|
4
|
+
## SYNOPSIS
|
5
|
+
|
6
|
+
`hotfix list`
|
7
|
+
|
8
|
+
## DESCRIPTION
|
9
|
+
|
10
|
+
Lists the current branch and any available hotfix branches. Shows the author,
|
11
|
+
hash, and relative time of last commit on each branch.
|
12
|
+
|
13
|
+
## COPYRIGHT
|
14
|
+
|
15
|
+
Copyright (c) 2012-2013 iFixit.
|
16
|
+
|
17
|
+
## SEE ALSO
|
18
|
+
|
19
|
+
hotfix(1), feature-list(1)
|
20
|
+
|
data/man/hotfix-merge.1
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
|
+
.
|
4
|
+
.TH "HOTFIX\-MERGE" "1" "February 2013" "iFixit" ""
|
5
|
+
.
|
6
|
+
.SH "NAME"
|
7
|
+
\fBhotfix\-merge\fR \- Merge a hotfix branch into stable and the development branch\.
|
8
|
+
.
|
9
|
+
.SH "SYNOPSIS"
|
10
|
+
\fBhotfix merge\fR [name\-of\-hotfix]
|
11
|
+
.
|
12
|
+
.SH "DESCRIPTION"
|
13
|
+
Merge a hotfix branch into stable and \fIfeature\.development_branch\fR\. If \fBname\-of\-hotfix\fR is not specified, the current branch will be used\. \fBhotfix merge\fR will attempt to prefill the merge message with a link to and the text of the pull request associated with the branch\.
|
14
|
+
.
|
15
|
+
.P
|
16
|
+
Deletes the local copy of the branch on success\.
|
17
|
+
.
|
18
|
+
.SH "COPYRIGHT"
|
19
|
+
Copyright (c) 2012\-2013 iFixit\.
|
20
|
+
.
|
21
|
+
.SH "SEE ALSO"
|
22
|
+
hotfix(1), feature\-merge(1)
|