git-scripts 0.3.0 → 0.4.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.
Files changed (66) hide show
  1. checksums.yaml +7 -0
  2. data/bin/feature +28 -14
  3. data/bin/hotfix +24 -19
  4. data/lib/git.rb +11 -11
  5. data/lib/github.rb +36 -8
  6. data/lib/helpers.rb +2 -2
  7. data/man/feature-clean.1 +1 -1
  8. data/man/feature-clean.1.html +120 -0
  9. data/man/feature-clean.1.markdown +61 -0
  10. data/man/feature-finish-issue.1 +1 -1
  11. data/man/feature-finish-issue.1.html +113 -0
  12. data/man/feature-finish-issue.1.markdown +56 -0
  13. data/man/feature-finish.1 +1 -1
  14. data/man/feature-finish.1.html +9 -3
  15. data/man/feature-finish.1.markdown +56 -0
  16. data/man/feature-github-test.1 +1 -1
  17. data/man/{feature-url.1.html → feature-github-test.1.html} +15 -9
  18. data/man/feature-github-test.1.markdown +53 -0
  19. data/man/feature-list.1 +1 -1
  20. data/man/feature-list.1.html +8 -2
  21. data/man/feature-list.1.markdown +60 -0
  22. data/man/feature-merge.1 +2 -2
  23. data/man/feature-merge.1.html +7 -1
  24. data/man/feature-merge.1.markdown +59 -0
  25. data/man/feature-merge.1.ronn +1 -0
  26. data/man/feature-prune.1 +1 -1
  27. data/man/feature-prune.1.html +116 -0
  28. data/man/feature-prune.1.markdown +60 -0
  29. data/man/feature-start.1 +1 -1
  30. data/man/feature-start.1.html +110 -0
  31. data/man/feature-start.1.markdown +53 -0
  32. data/man/feature-stashes.1 +1 -1
  33. data/man/feature-stashes.1.html +122 -0
  34. data/man/feature-stashes.1.markdown +63 -0
  35. data/man/feature-status.1 +1 -1
  36. data/man/feature-status.1.html +113 -0
  37. data/man/feature-status.1.markdown +56 -0
  38. data/man/feature-switch.1 +1 -1
  39. data/man/feature-switch.1.html +8 -2
  40. data/man/feature-switch.1.markdown +61 -0
  41. data/man/feature.1 +1 -1
  42. data/man/feature.1.html +8 -3
  43. data/man/feature.1.markdown +80 -0
  44. data/man/hotfix-finish-issue.1 +1 -1
  45. data/man/hotfix-finish-issue.1.html +113 -0
  46. data/man/hotfix-finish-issue.1.markdown +56 -0
  47. data/man/hotfix-finish.1 +1 -1
  48. data/man/hotfix-finish.1.html +112 -0
  49. data/man/hotfix-finish.1.markdown +55 -0
  50. data/man/hotfix-list.1 +1 -1
  51. data/man/hotfix-list.1.html +8 -2
  52. data/man/hotfix-list.1.markdown +60 -0
  53. data/man/hotfix-merge.1 +2 -2
  54. data/man/hotfix-merge.1.html +7 -1
  55. data/man/hotfix-merge.1.markdown +59 -0
  56. data/man/hotfix-merge.1.ronn +1 -0
  57. data/man/hotfix-start.1 +1 -1
  58. data/man/{hotfix-url.1.html → hotfix-start.1.html} +15 -9
  59. data/man/hotfix-start.1.markdown +53 -0
  60. data/man/hotfix-switch.1 +1 -1
  61. data/man/hotfix-switch.1.html +112 -0
  62. data/man/hotfix-switch.1.markdown +55 -0
  63. data/man/hotfix.1 +1 -1
  64. data/man/hotfix.1.html +7 -2
  65. data/man/hotfix.1.markdown +68 -0
  66. metadata +84 -64
@@ -0,0 +1,53 @@
1
+ feature-start(1) - Start a new feature branch.
2
+ ==============================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `feature start` <var>name-of-feature</var>
7
+
8
+ ## DESCRIPTION
9
+
10
+ Start a new feature branch based off _feature.development-branch_.
11
+
12
+ ## COPYRIGHT
13
+
14
+ Copyright (c) 2012-2013 iFixit.
15
+
16
+ ## SEE ALSO
17
+
18
+ feature(1), hotfix-start(1)
19
+
20
+ ## WWW
21
+
22
+ https://github.com/iFixit/git-scripts
23
+
24
+
25
+
26
+ [SYNOPSIS]: #SYNOPSIS "SYNOPSIS"
27
+ [DESCRIPTION]: #DESCRIPTION "DESCRIPTION"
28
+ [COPYRIGHT]: #COPYRIGHT "COPYRIGHT"
29
+ [SEE ALSO]: #SEE-ALSO "SEE ALSO"
30
+ [WWW]: #WWW "WWW"
31
+
32
+
33
+ [feature(1)]: feature.1.html
34
+ [feature-list(1)]: feature-list.1.html
35
+ [feature-start(1)]: feature-start.1.html
36
+ [feature-switch(1)]: feature-switch.1.html
37
+ [feature-finish(1)]: feature-finish.1.html
38
+ [feature-merge(1)]: feature-merge.1.html
39
+ [feature-pull(1)]: feature-pull.1.html
40
+ [feature-status(1)]: feature-status.1.html
41
+ [feature-stashes(1)]: feature-stashes.1.html
42
+ [feature-clean(1)]: feature-clean.1.html
43
+ [feature-github-test(1)]: feature-github-test.1.html
44
+ [hotfix(1)]: hotfix.1.html
45
+ [hotfix-list(1)]: hotfix-list.1.html
46
+ [hotfix-start(1)]: hotfix-start.1.html
47
+ [hotfix-switch(1)]: hotfix-switch.1.html
48
+ [hotfix-finish(1)]: hotfix-finish.1.html
49
+ [hotfix-merge(1)]: hotfix-merge.1.html
50
+ [git(1)]: https://www.kernel.org/pub/software/scm/git/docs/
51
+ [feature-finish-issue(1)]: feature-finish-issue.1.html
52
+ [feature-prune(1)]: feature-prune.1.html
53
+ [hotfix-finish-issue(1)]: hotfix-finish-issue.1.html
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "FEATURE\-STASHES" "1" "April 2013" "iFixit" ""
4
+ .TH "FEATURE\-STASHES" "1" "September 2013" "iFixit" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBfeature\-stashes\fR \- Show stashes saved on the current branch\.
@@ -0,0 +1,122 @@
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-stashes(1) - Show stashes saved on the current 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="#OPTIONS">OPTIONS</a>
66
+ <a href="#COPYRIGHT">COPYRIGHT</a>
67
+ <a href="#SEE-ALSO">SEE ALSO</a>
68
+ <a href="#WWW">WWW</a>
69
+ </div>
70
+
71
+ <ol class='man-decor man-head man head'>
72
+ <li class='tl'>feature-stashes(1)</li>
73
+ <li class='tc'></li>
74
+ <li class='tr'>feature-stashes(1)</li>
75
+ </ol>
76
+
77
+ <h2 id="NAME">NAME</h2>
78
+ <p class="man-name">
79
+ <code>feature-stashes</code> - <span class="man-whatis">Show stashes saved on the current branch.</span>
80
+ </p>
81
+
82
+ <h2 id="SYNOPSIS">SYNOPSIS</h2>
83
+
84
+ <p><code>feature stashes</code> [-v]</p>
85
+
86
+ <h2 id="DESCRIPTION">DESCRIPTION</h2>
87
+
88
+ <p>Show stashes saved on the current branch. Display the relative time the stash
89
+ was saved, the stash message, and instructions on viewing and applying the
90
+ stash.</p>
91
+
92
+ <p>Compatible with hotfix branches.</p>
93
+
94
+ <h2 id="OPTIONS">OPTIONS</h2>
95
+
96
+ <dl>
97
+ <dt class="flush"> <code>-v</code></dt><dd> Show <em>all</em> stashes, not just those on the current branch.</dd>
98
+ </dl>
99
+
100
+
101
+ <h2 id="COPYRIGHT">COPYRIGHT</h2>
102
+
103
+ <p>Copyright (c) 2012-2013 iFixit.</p>
104
+
105
+ <h2 id="SEE-ALSO">SEE ALSO</h2>
106
+
107
+ <p><a class="man-ref" href="feature.1.html">feature<span class="s">(1)</span></a></p>
108
+
109
+ <h2 id="WWW">WWW</h2>
110
+
111
+ <p>https://github.com/iFixit/git-scripts</p>
112
+
113
+
114
+ <ol class='man-decor man-foot man foot'>
115
+ <li class='tl'>iFixit</li>
116
+ <li class='tc'>September 2013</li>
117
+ <li class='tr'>feature-stashes(1)</li>
118
+ </ol>
119
+
120
+ </div>
121
+ </body>
122
+ </html>
@@ -0,0 +1,63 @@
1
+ feature-stashes(1) - Show stashes saved on the current branch.
2
+ ==============================================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `feature stashes` [-v]
7
+
8
+ ## DESCRIPTION
9
+
10
+ Show stashes saved on the current branch. Display the relative time the stash
11
+ was saved, the stash message, and instructions on viewing and applying the
12
+ stash.
13
+
14
+ Compatible with hotfix branches.
15
+
16
+ ## OPTIONS
17
+
18
+ * `-v`:
19
+ Show _all_ stashes, not just those on the current branch.
20
+
21
+ ## COPYRIGHT
22
+
23
+ Copyright (c) 2012-2013 iFixit.
24
+
25
+ ## SEE ALSO
26
+
27
+ feature(1)
28
+
29
+ ## WWW
30
+
31
+ https://github.com/iFixit/git-scripts
32
+
33
+
34
+
35
+ [SYNOPSIS]: #SYNOPSIS "SYNOPSIS"
36
+ [DESCRIPTION]: #DESCRIPTION "DESCRIPTION"
37
+ [OPTIONS]: #OPTIONS "OPTIONS"
38
+ [COPYRIGHT]: #COPYRIGHT "COPYRIGHT"
39
+ [SEE ALSO]: #SEE-ALSO "SEE ALSO"
40
+ [WWW]: #WWW "WWW"
41
+
42
+
43
+ [feature(1)]: feature.1.html
44
+ [feature-list(1)]: feature-list.1.html
45
+ [feature-start(1)]: feature-start.1.html
46
+ [feature-switch(1)]: feature-switch.1.html
47
+ [feature-finish(1)]: feature-finish.1.html
48
+ [feature-merge(1)]: feature-merge.1.html
49
+ [feature-pull(1)]: feature-pull.1.html
50
+ [feature-status(1)]: feature-status.1.html
51
+ [feature-stashes(1)]: feature-stashes.1.html
52
+ [feature-clean(1)]: feature-clean.1.html
53
+ [feature-github-test(1)]: feature-github-test.1.html
54
+ [hotfix(1)]: hotfix.1.html
55
+ [hotfix-list(1)]: hotfix-list.1.html
56
+ [hotfix-start(1)]: hotfix-start.1.html
57
+ [hotfix-switch(1)]: hotfix-switch.1.html
58
+ [hotfix-finish(1)]: hotfix-finish.1.html
59
+ [hotfix-merge(1)]: hotfix-merge.1.html
60
+ [git(1)]: https://www.kernel.org/pub/software/scm/git/docs/
61
+ [feature-finish-issue(1)]: feature-finish-issue.1.html
62
+ [feature-prune(1)]: feature-prune.1.html
63
+ [hotfix-finish-issue(1)]: hotfix-finish-issue.1.html
data/man/feature-status.1 CHANGED
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "FEATURE\-STATUS" "1" "April 2013" "iFixit" ""
4
+ .TH "FEATURE\-STATUS" "1" "September 2013" "iFixit" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBfeature\-status\fR \- Determine if the current branch is up\-to\-date with the remote branch\.
@@ -0,0 +1,113 @@
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-status(1) - Determine if the current branch is up-to-date with the remote 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
+ <a href="#WWW">WWW</a>
68
+ </div>
69
+
70
+ <ol class='man-decor man-head man head'>
71
+ <li class='tl'>feature-status(1)</li>
72
+ <li class='tc'></li>
73
+ <li class='tr'>feature-status(1)</li>
74
+ </ol>
75
+
76
+ <h2 id="NAME">NAME</h2>
77
+ <p class="man-name">
78
+ <code>feature-status</code> - <span class="man-whatis">Determine if the current branch is up-to-date with the remote branch.</span>
79
+ </p>
80
+
81
+ <h2 id="SYNOPSIS">SYNOPSIS</h2>
82
+
83
+ <p><code>feature status</code></p>
84
+
85
+ <h2 id="DESCRIPTION">DESCRIPTION</h2>
86
+
87
+ <p>Determine if the current branch is up-to-date with the remote branch. If there
88
+ are differences, show a graphical git log between the two branches.</p>
89
+
90
+ <p>Compatible with hotfix branches.</p>
91
+
92
+ <h2 id="COPYRIGHT">COPYRIGHT</h2>
93
+
94
+ <p>Copyright (c) 2012-2013 iFixit.</p>
95
+
96
+ <h2 id="SEE-ALSO">SEE ALSO</h2>
97
+
98
+ <p><a class="man-ref" href="feature.1.html">feature<span class="s">(1)</span></a></p>
99
+
100
+ <h2 id="WWW">WWW</h2>
101
+
102
+ <p>https://github.com/iFixit/git-scripts</p>
103
+
104
+
105
+ <ol class='man-decor man-foot man foot'>
106
+ <li class='tl'>iFixit</li>
107
+ <li class='tc'>September 2013</li>
108
+ <li class='tr'>feature-status(1)</li>
109
+ </ol>
110
+
111
+ </div>
112
+ </body>
113
+ </html>
@@ -0,0 +1,56 @@
1
+ feature-status(1) - Determine if the current branch is up-to-date with the remote branch.
2
+ =========================================================================================
3
+
4
+ ## SYNOPSIS
5
+
6
+ `feature status`
7
+
8
+ ## DESCRIPTION
9
+
10
+ Determine if the current branch is up-to-date with the remote branch. If there
11
+ are differences, show a graphical git log between the two branches.
12
+
13
+ Compatible with hotfix branches.
14
+
15
+ ## COPYRIGHT
16
+
17
+ Copyright (c) 2012-2013 iFixit.
18
+
19
+ ## SEE ALSO
20
+
21
+ feature(1)
22
+
23
+ ## WWW
24
+
25
+ https://github.com/iFixit/git-scripts
26
+
27
+
28
+
29
+ [SYNOPSIS]: #SYNOPSIS "SYNOPSIS"
30
+ [DESCRIPTION]: #DESCRIPTION "DESCRIPTION"
31
+ [COPYRIGHT]: #COPYRIGHT "COPYRIGHT"
32
+ [SEE ALSO]: #SEE-ALSO "SEE ALSO"
33
+ [WWW]: #WWW "WWW"
34
+
35
+
36
+ [feature(1)]: feature.1.html
37
+ [feature-list(1)]: feature-list.1.html
38
+ [feature-start(1)]: feature-start.1.html
39
+ [feature-switch(1)]: feature-switch.1.html
40
+ [feature-finish(1)]: feature-finish.1.html
41
+ [feature-merge(1)]: feature-merge.1.html
42
+ [feature-pull(1)]: feature-pull.1.html
43
+ [feature-status(1)]: feature-status.1.html
44
+ [feature-stashes(1)]: feature-stashes.1.html
45
+ [feature-clean(1)]: feature-clean.1.html
46
+ [feature-github-test(1)]: feature-github-test.1.html
47
+ [hotfix(1)]: hotfix.1.html
48
+ [hotfix-list(1)]: hotfix-list.1.html
49
+ [hotfix-start(1)]: hotfix-start.1.html
50
+ [hotfix-switch(1)]: hotfix-switch.1.html
51
+ [hotfix-finish(1)]: hotfix-finish.1.html
52
+ [hotfix-merge(1)]: hotfix-merge.1.html
53
+ [git(1)]: https://www.kernel.org/pub/software/scm/git/docs/
54
+ [feature-finish-issue(1)]: feature-finish-issue.1.html
55
+ [feature-prune(1)]: feature-prune.1.html
56
+ [hotfix-finish-issue(1)]: hotfix-finish-issue.1.html
data/man/feature-switch.1 CHANGED
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "FEATURE\-SWITCH" "1" "August 2013" "iFixit" ""
4
+ .TH "FEATURE\-SWITCH" "1" "September 2013" "iFixit" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBfeature\-switch\fR \- Switch to another feature branch\.
@@ -41,6 +41,12 @@
41
41
  ol.man-decor li.tc {text-align:center;letter-spacing:4px}
42
42
  ol.man-decor li.tr {text-align:right;float:right}
43
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>
44
50
  </head>
45
51
  <!--
46
52
  The following styles are deprecated and will be removed at some point:
@@ -104,8 +110,8 @@ to the branch with a pull request numbered <var>number-of-pull</var></p>
104
110
 
105
111
 
106
112
  <ol class='man-decor man-foot man foot'>
107
- <li class='tl'></li>
108
- <li class='tc'>August 2013</li>
113
+ <li class='tl'>iFixit</li>
114
+ <li class='tc'>September 2013</li>
109
115
  <li class='tr'>feature-switch(1)</li>
110
116
  </ol>
111
117