-
Notifications
You must be signed in to change notification settings - Fork 0
/
comandos-flow.html
51 lines (51 loc) · 1.24 KB
/
comandos-flow.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<title>Comandos Git-flow</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<ul>
<li><a href="perguntas.html">Perguntas</a></li>
<li><a href="comandos.html">Comandos</a></li>
<li><a href="comandos-flow.html">Comandos Flow</a></li>
</ul>
</div>
<table class="table">
<tr>
<th>comandos</th>
<th>descrição</th>
</tr>
<tr>
<td>git flow init</td>
<td>inicia o git flow</td>
</tr>
<tr>
<td>git flow feature start</td>
<td>cria uma nova feature</td>
</tr>
<tr>
<td>git flow feature finish</td>
<td>finaliza uma feature</td>
</tr>
<tr>
<td>git flow release start</td>
<td>cria uma nova release</td>
</tr>
<tr>
<td>git flow release finish</td>
<td>finaliza uma release</td>
</tr>
<tr>
<td>git flow hotfix start</td>
<td>cria um novo hotfix</td>
</tr>
<tr>
<td>git flow hotfix finish</td>
<td>finaliza um hotfix</td>
</tr>
</table>
</body>
</html>