-
Notifications
You must be signed in to change notification settings - Fork 1
/
rules-en.html
39 lines (35 loc) · 1.22 KB
/
rules-en.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>vimpr - Rules</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div id="contents">
<h1>Rules</h1>
<h2>Basic rules</h2>
<ul>
<li>Avoid merge commits unless you need to it.</li>
<li>Don't do "git push --force", or banned.</li>
<li>You allows to make topic branches when you desire it.</li>
<li>Be sure to follow the below branch naming rules.</li>
</ul>
<h2>Policies</h2>
<ul>
<li>Do "git pull --rebase" before "git push".</li>
<li>Fix the issues positively.</li>
<li>"push" aggressively!!</li>
</ul>
<h2>Branch naming rules</h2>
<p>We name new branches with these rules, "<plugin file name without ext>/<branch purpose ( hyphenated )>". ex:</p>
<blockquote class="code">
<pre><code>
stella/support-html5
feedSomeKeys_3/add-special-option
</code></pre>
</blockquote>
<a href="index.html">to Top Page</a>
</div>
</body>
</html>