-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreadme.html
53 lines (45 loc) · 1.52 KB
/
readme.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
<!DOCTYPE html>
<html>
<head>
<meta chrset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>README</title>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/blog.css" rel="stylesheet">
<link href="css/gitflow.css" rel="stylesheet">
</head>
<body>
<div class="blog-masthead">
<div class="container">
<nav class="nav blog-nav">
<a class="nav-link" href="./">setup</a>
<a class="nav-link" href="with-gitflow.html">with git-flow</a>
<a class="nav-link" href="without-gitflow.html">without git-flow</a>
<a class="nav-link active" href="readme.html">readme</a>
<a class="nav-link" href="graphic.html">graphic</a>
</nav>
</div>
</div>
<div class="blog-header">
<div class="container">
<h1 class="blog-title">Git Flow</h1>
<p class="lead blog-description">Using git flow -- or not</p>
</div>
</div>
<div class="container">
<div class="row">
<pre>
# Project Name
## Versions
### 1.0 - 2015-08-31
* Initial build
</pre>
</div>
</div><!-- /.container -->
<footer class="blog-footer">
<p>Using the <a href="http://nvie.com/posts/a-successful-git-branching-model/">Git branching model</a> from <a href="https://twitter.com/nvie">@nvie</a></p>
<p>Built by <a href="https://twitter.com/skoch">@skoch</a></p>
</footer>
</body>
</html>