-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (123 loc) · 5.29 KB
/
index.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="estilo.css">
<link rel="icon" href="img/git_icon.png">
<link href="https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap" rel="stylesheet">
<meta name="keywords" content="danielle8farias, git, github,tutorial, linux">
<title>Tutorial sobre Git/Github</title>
</head>
<body>
<div class="corpo-central">
<div class="titulo">
<h1>>_ Tutorial sobre Git/GitHub</h1>
<h1>- Índice -</h1>
</div>
<div class="lista-indice">
<ol start="0">
<li>
<a href="p0000_instalacao_linux.html" target="_blank">
Instalando, configurando e inicializando o Git no Linux
</a>
</li>
<li>
<a href="p0001_add.html" target="_blank">
git add: Adicionando arquivos no Git
</a>
</li>
<li>
<a href="p0002_status.html" target="_blank">
git status: Conferindo o estado atual do Git
</a>
</li>
<li>
<a href="p0003_remove_add.html" target="_blank">
git rm/reset: Removendo arquivos do index
</a>
</li>
<li>
<a href="p0004_commit.html" target="_blank">
git commit: Enviando arquivos para o repositório Git
</a>
</li>
<li>
<a href="p0005_log_reflog.html" target="_blank">
git log/reflog: Verificando o histórico do git
</a>
</li>
<li>
<a href="p0006_amend.html" target="_blank">
git amend: Corrigindo o último commit
</a>
</li>
<li>
<a href="p0007_renomear_mover.html" target="_blank">
git mv: Renomeando ou movendo arquivos no Git
</a>
</li>
<li>
<a href="p0008_diff.html" target="_blank">
git diff: Verificando modificações no repositório
</a>
</li>
<li>
<a href="p0009_am.html" target="_blank">
git -am: Atualizando arquivo(s) modificado(s) no Git
</a>
</li>
<li>
<a href="p0010_ignore.html" target="_blank">
gitignore: Ignorando arquivos no Git
</a>
</li>
<li>
<a href="p0011_grafico_terminal.html" target="_blank">
Visualizando o commit no modo gráfico
</a>
</li>
<li>
<a href="p0012_delete_arquivo.html" target="_blank">
git rm: Excluindo arquivo do repositório
</a>
</li>
<li>
<a href="p0013_tag.html" target="_blank">
git tag: Etiquetas (tags) no Git
</a>
</li>
<li>
<a href="p0014_branch.html" target="_blank">
git branch: O que são branches (ramos) no Git?
</a>
</li>
<li>
<a href="p0015_checkout.html" target="_blank">
git checkout: Navegando entre ramos e snapshots, e descartando modificações
</a>
</li>
<li>
<a href="p0016_reset.html" target="_blank">
git reset: Retirando arquivos da "sala de espera" e desfazendo commits
</a>
</li>
<li>
<a href="p0017_revert_commit.html" target="_blank">
git revert: Desfazendo commits
</a>
</li>
<li>
<a href="p0018_push.html" target="_blank">
git push: Usando o Github e enviando um projeto local para o repositório remoto
</a>
</li>
</ol>
</div>
<footer>
by danielle8farias
</footer>
</div>
</body>
</html>