-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcontribute.html
106 lines (86 loc) · 4.55 KB
/
contribute.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="EC" content="">
<link rel="icon" href="../../favicon.ico">
<title>Fluxbox Wiki</title>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="http://www.fluxbox-wiki.github.io/jumbotron-custom.css" rel="stylesheet">
<script type="text/javascript" src="http://www.fluxbox-wiki.github.io/generated_toc.js"></script>
</head>
<body>
<div class="container theme-showcase" role="main">
<div class="header">
<ul class="nav nav-pills pull-right" style="font-size:15px">
<li ><a href="http://fluxbox-wiki.github.io/index.html" >Home</a></li>
<li><a href="http://fluxbox-wiki.github.io/about.html">About</a></li>
<li class="active"><a href="http://fluxbox-wiki.github.io/contribute.html">Contribute</a></li>
<li><a href="#searchfield">Search</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Languages <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="http://fluxbox-wiki.github.io/category/howtos/en/index.html">English</a></li>
<li><a href="http://fluxbox-wiki.github.io/category/howtos/it/index.html">Italian</a></li>
<li><a href="http://fluxbox-wiki.github.io/category/howtos/de/index.html">German</a></li>
<li><a href="http://fluxbox-wiki.github.io/category/howtos/fin/index.html">Finnish</a></li>
<li><a href="http://fluxbox-wiki.github.io/category/howtos/br/index.html">Portuguese</a></li>
<li><a href="http://fluxbox-wiki.github.io/category/howtos/ko/index.html">Korean</a></li>
<li><a href="http://fluxbox-wiki.github.io/category/howtos/es/index.html">Spanish</a></li>
<li><a href="http://fluxbox-wiki.github.io/category/howtos/ru/index.html">Russian</a></li>
</ul>
</li>
<li>
</li>
</ul>
<p class="text-muted" style="font-size:30px">Fluxbox Wiki </p>
</div>
<div class="page-header">
<h1>Contribute</h1>
</div>
<p>
This wiki is not really a wiki anymore, now its a <a href="https://pages.github.com/">Github Pages</a> powered static HTML site.
If you wish to contribute please follow this workflow:
<br />
</p>
<ul>
<li>Join <a href="https://github.com/">Github</a>. Its free!</li>
<li>Fork <a href="https://github.com/fluxbox-wiki/fluxbox-wiki.github.io">this</a> repo</li>
<li>Clone your fork.</li>
<li>Create a topic branch.</li>
<li>Make changes to add your content or fix some existing content</li>
<li>Commit those changes to your topic branch & Push them to Github</li>
<li>Open a pull request.</li>
</ul>
<p>
Here is an example of the commands I would run on my desktop to add "foo":<br />
</p>
<pre>
git clone https://github.com/michaelrice/fluxbox-wiki.github.io.git
cd fluxbox-wiki.github.io
git checkout -b adding_foo
echo "This is foo" > foo.html
git add foo.html
git commit -m "added foo"
git push origin adding_foo
</pre>
<p>
Next I would go to Github and open a pull request. For help using pull requests see:
<a href="https://help.github.com/articles/using-pull-requests">Using Pull Requests</a>
</p>
<div class="alert alert-success" role="alert">
<strong> TEMPLATE! </strong> Please follow this <a href="template.html">template</a> to write your pages
</div>
</div>
<div class="footer">
<br>
<a name="searchfield"> <center> <iframe src="http://duckduckgo.com/search.html?width=480&site=www.fluxbox-wiki.github.io&prefill=Fluxbox Wiki&kn=1&kj=b " style="overflow:hidden;margin:0;padding:0;width:550px;height:40px;" frameborder="0"></iframe></center></a>
<br>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</body>
</html>