-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmakingpatches.html
48 lines (47 loc) · 1.03 KB
/
makingpatches.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<font face="helvetica">
<title>Making Patches</title>
<body>
<p align=center><font size=+5>Making Patches</font>
<hr>
<a href="contents.html">Contents</a>
<font size=+3>
<ul>
<li><a href="lkprocess.html">The linux kernel development process</a>
<li><a href="whatisapatch.html">What is a patch?</a>
<li>Read Andrew Morton's <a href="http://kerneltrap.org/node/3737">"The Perfect Patch"</a>
<li>Tools for making, applying, and manipulating patches
<ul>
<li><a href="using_stgit.html">Stacked Git</a>
<ul>
<table border=1>
<tr>
<td>stg help</td>
<td>stg init</td>
<td>stg series</td>
</tr><tr>
<td>stg new <em>patchname</em></td>
<td>stg push</td>
<td>stg pop</td>
</tr><tr>
<td>stg refresh</td>
<td>stg import</td>
<td>stg export</td>
</tr><tr>
<td>stg goto</td>
<td>stg squash</td>
<td>stg delete</td>
</tr><tr>
<td>stg branch</td>
<td>git add filename</td>
<td>git rm filename</td>
</tr>
</table>
</ul>
<li><a href="using_stgit.html#patchutils">patchutils</a>
<li><a href="using_stgit.html#wiggle">wiggle</a>
</ul>
</ul>
</font>
</body>
</html>