-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
548 lines (451 loc) · 15.5 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Oficina Git</title>
<meta name="description" content="Oficina Git: uma oficina de controle de versão para iniciantes.">
<meta name="author" content="Erick Mendonça">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/white.css" id="theme">
<link rel="shortcut icon" href="./favicon.ico" />
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="lib/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/override.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h1>Oficina <i class="fa fa-git"></i></h1>
<p>
<small>Criado por <a href="http://erickmendonca.com.br">Erick Mendonça</a></small>
</p>
</section>
<section data-background="./images/bg-erick.jpg">
<div class="color-white">
<h2 class="color-white">Hello!</h2>
<p>
<p class="fragment"><i class="fa fa-user-secret"></i> Ninja</p>
<p class="fragment">Full Stack Developer</p>
<p class="fragment">GDG Aracaju Co-organizer</p>
<p class="fragment">
<i class="fa fa-github"></i>
<i class="fa fa-facebook"></i>
<i class="fa fa-google-plus"></i> erickmendonca <br>
<i class="fa fa-steam"></i> <i class="fa fa-twitter"></i> erickmagnus
</p>
</p>
</div>
</section>
<section>
<h2>Agenda</h2>
<ul>
<li class="fragment"><i class="fa fa-git"></i>
<ul>
<li>O que é?</li>
<li>Como usar?</li>
</ul>
</li>
<li class="fragment"><i class="fa fa-github-square"></i>
<ul>
<li>O que é?</li>
<li>Como usar?</li>
</ul>
</li>
</ul>
</section>
<section>
<h2>O que é?</h2>
<p>Controle de versão <b>distribuído</b></p>
<p><b>Gratuito</b> e open source</p>
<p>Inicialmente desenvolvido por <b>Linus Torvalds</b></p>
<p>Licença: GNU GPL v2</p>
<p>Lançado em 07 de abril de 2005</p>
</section>
<section>
<h2>Controle de versão</h2>
<img class="noborder" src="./images/controle-de-versao.png" alt="" />
</section>
<section>
<p>
Controle de versão é um sistema que registra as alterações em um arquivo ou conjunto de arquivos.
</p>
<p>
Permite que você possa recuperar versões anteriores dos arquivos.
</p>
<p>
Podem ser usados com outros tipos de arquivos além de código-fonte.
</p>
</section>
<section>
<img class="noborder" src="./images/controle-de-versao-2.png" alt="" />
</section>
<section>
<h2>git não é</h2>
<p>
Subversion
</p>
<p>
Esqueça o SVN!
</p>
</section>
<section>
<h2>não é uma evolução</h2>
<img class="noborder" src="./images/evolution.png" alt=""/>
</section>
<section>
<h2>não é uma evolução</h2>
<img class="noborder" src="./images/not-evolution.png" alt=""/>
</section>
<section>
<h2>Centralizado</h2>
<img class="noborder" src="./images/svn.svg" alt="" />
</section>
<section>
<h2>Distribuído</h2>
<img class="noborder" src="./images/git.svg" alt="" />
</section>
<section>
<h2>Armazenando diferenças</h2>
<img class="noborder" src="./images/delta.png" alt="" />
</section>
<section>
<h2>Armazenando em grafos</h2>
<img class="noborder" src="./images/graph.png" alt="" />
</section>
<section>
<h2>Como usar?<h2>
</section>
<section>
<img class="noborder" src="./images/git-commands.png" alt="" />
</section>
<section data-background="./images/monkey-1.gif">
<h1 class="color-white">Calma!</h1>
</section>
<section data-background="./images/well-here-we-are.gif">
</section>
<section>
<h2>init</h2>
<p>O comando git init inicia um novo repositório.</p>
<p>Se não for informada uma <i>pasta</i>, ele cria no diretório atual!</p>
<p> </p>
<code>git init :pasta</code>
</section>
<section>
<h2>clone</h2>
<p>O comando git clone cria uma cópia local de um repositório Git.</p>
<p>É o método mais comum de obter o código de alguém!</p>
<p> </p>
<code>git clone :repositório :pasta</code>
</section>
<section>
<h2>config</h2>
<p>O comando git config te permite alterar algumas configurações de sua instalação Git.</p>
<p> </p>
<code>git config :opções</code>
</section>
<section>
<code>git config --global user.name "Meu nome"</code>
<br><br>
<code>git config --global user.email Meu@email</code>
</section>
<section>
<h2>add</h2>
<p>O comando git add te permite selecionar quais arquivos serão salvos no controle de versão.</p>
<p> </p>
<code>git add :arquivo/pasta</code>
</section>
<section>
<h2>commit</h2>
<p>O comando git commit pega os arquivos selecionados e os salvam no histórico do projeto.</p>
<p> </p>
<code>git commit -m :mensagem</code>
</section>
<section>
<h2>status</h2>
<p>O comando git status mostra o estado atual da pasta de trabalho.</p>
<p> </p>
<code>git status</code>
</section>
<section data-background="./images/hold-on.gif">
</section>
<section>
<h2>Fluxo</h2>
<img class="noborder" src="./images/index.png" alt="" />
</section>
<section>
<img src="./images/git-init.png" alt="" class="noborder" />
</section>
<section>
<img src="./images/git-status.png" alt="" class="noborder" />
</section>
<section>
<img src="./images/git-add.png" alt="" class="noborder" />
</section>
<section>
<img src="./images/git-commit.png" alt="" class="noborder" />
</section>
<section>
<h2>log</h2>
<p>O comando git log permite inspecionar o histórico do projeto.</p>
<p> </p>
<code>git log :opções</code>
</section>
<section>
<img src="./images/git-log.png" alt="" class="noborder" />
</section>
<section>
<img src="./images/git-log-oneline.png" alt="" class="noborder" />
</section>
<section>
<h2>checkout</h2>
<p>O comando git checkout possui vários usos: checar arquivos, commits e branches.</p>
<p> </p>
<code>git checkout :commit/branch</code>
</section>
<section>
<h2>revert</h2>
<p>O comando git revert desfaz um commit salvo, mas sem alterar o histórico do projeto.</p>
<p> </p>
<code>git revert :commit</code>
</section>
<section>
<h2>reset</h2>
<p>O comando git reset desfaz alterações em arquivos na pasta de trabalho.</p>
<p> </p>
<code>git reset :opções :arquivo</code>
</section>
<section>
<img src="./images/git-reset-head.png" alt="" class="noborder"/>
</section>
<section>
<img src="./images/git-revert.png" alt="" class="noborder"/>
</section>
<section>
<h2>clean</h2>
<p>O comando git clean remove arquivos que não estão no repositório da pasta de trabalho.
</p>
<p> </p>
<code>git clean :opções</code>
</section>
<section>
<h2>branch</h2>
<p>O comando git branch permite criar ambientes de desenvolvimento isolados dentro do mesmo repositório.</p>
<p> </p>
<code>git branch :nome</code>
</section>
<section>
<h2>merge</h2>
<p>O comando git merge é uma forma poderosa de integrar mudanças em branches diferentes.</p>
<p> </p>
<code>git merge :opções :branch</code>
</section>
<section>
<h2>rebase</h2>
<p>O comando git rebase permite mover branches, alterando o histórico para que seja mais linear.</p>
<p> </p>
<code>git rebase :base</code>
</section>
<section data-background="./images/revision-cat.gif">
<h2 class="color-white">Hora da revisão</h2>
</section>
<section>
<img src="./images/git-history-0.svg" class="noborder">
</section>
<section>
<code>git init</code>
<img src="./images/git-history-1.svg" class="noborder">
</section>
<section>
<code>git add .<br>git commit -m "C1"</code>
<img src="./images/git-history-2.svg" class="noborder">
</section>
<section>
<code>git commit -m "C2"</code>
<img src="./images/git-history-3.svg" class="noborder">
</section>
<section>
<code>git branch idea<br>git checkout idea<br>git commit -m "C3"</code>
<img src="./images/git-history-4.svg" class="noborder">
</section>
<section>
<code>git checkout master<br>git checkout -b hotfix<br>git commit -m "C4"</code>
<img src="./images/git-history-5.svg" class="noborder">
</section>
<section>
<code>git checkout master<br>git merge hotfix</code>
<img src="./images/git-history-6.svg" class="noborder">
</section>
<section>
<code>git merge idea</code>
<img src="./images/git-history-7.svg" class="noborder">
</section>
<section>
<code>git branch -D hotfix</code>
<img src="./images/git-history-8.svg" class="noborder">
</section>
<section>
<code>git tag v1</code>
<img src="./images/git-history-9.svg" class="noborder">
</section>
<section>
<code>git commit -m "C6"</code>
<img src="./images/git-history-10.svg" class="noborder">
</section>
<section>
<code>git checkout -b refactor<br>git commit -m "C7"</code>
<img src="./images/git-history-11.svg" class="noborder">
</section>
<section>
<code>git checkout master<br>git commit -m "C8"<br>git commit -m "C9"</code>
<img src="./images/git-history-12.svg" class="noborder">
</section>
<section>
<code>git checkout refactor<br>git commit -m "C10"</code>
<img src="./images/git-history-13.svg" class="noborder">
</section>
<section>
<code>git rebase master</code>
<img src="./images/git-history-14.svg" class="noborder">
</section>
<section>
<h2>diff</h2>
<p>
O comando git diff exibe as mudanças entre commits, árvores e elementos dentro do repositório.
</p>
<p>
</p>
<code>git diff :opções</code>
</section>
<section>
<code>git diff</code>
<p>
Diferenças entre os arquivo atuais e suas últimas versões adicionadas.
</p>
</section>
<section>
<code>git diff src/</code><br>
<code>git diff LICENSE</code>
<p>
Diferenças entre a pasta ou arquivo e suas últimas versões adicionadas.
</p>
</section>
<section>
<code>git diff --cached master</code><br>
<code>git diff --cached HEAD</code><br>
<code>git diff --cached 22981ec</code>
<p>
Diferenças entre os arquivos adicionados e um outro commit.
</p>
<p>
master: a branch master<br>
HEAD: ponto atual do repositório<br>
22981ec: um commit antigo
</p>
</section>
<section data-background="./images/nyan-octocat.gif">
</section>
<section data-background="./images/github.png">
</section>
<section>
<h2>remote</h2>
<p>O comando git remote permite gerenciar as conexões remotas do seu repositório.</p>
<p> </p>
<code>git remote :opções</code>
</section>
<section>
<h2>fetch</h2>
<p>O comando git fetch baixa uma branch de outro repositório remoto, como todos os commits e arquivos.</p>
<p> </p>
<code>git fetch :remote :branch</code>
</section>
<section>
<h2>pull</h2>
<p>O comando git pull é uma automatização: ele faz o fetch do repo remoto e o merge com o branch atual.</p>
<p> </p>
<code>git pull :opções :remote :branch</code>
</section>
<section>
<h2>push</h2>
<p>O comando git push move uma branch local para outro repositório.</p>
<p>Envia o seu código para outro lugar!</p>
<p> </p>
<code>git push :remote :branch</code>
</section>
<section data-background="./images/github-desktop.png">
</section>
<section>
<img src="./images/github-desktop-2.png" class="noborder" alt="" />
</section>
<section>
<img src="./images/github-desktop-3.png" class="noborder" alt="" />
</section>
<section data-background="./images/merge-conflict.png">
</section>
<section>
<img src="./images/the-best.gif" alt="" />
</section>
<section class="left-align">
<h2>Referências</h2>
<p>
- <a href="https://speakerdeck.com/bluekw810388/git">GIT, by Scott Chacon</a> <br>
- <a href="https://www.atlassian.com/git/tutorials/">Atlassian Git Tutorials</a> <br>
- <a href="http://nvie.com/posts/a-successful-git-branching-model/">Git branching model</a> <br>
- <a href="https://github.com/blog/2019-how-to-undo-almost-anything-with-git">How to undo (almost) anything in Git</a> <br>
- <a href="https://training.github.com/kit/">GitHub Training</a> <br>
- <a href="https://github.com/erickmendonca/git-flight-rules">Git Flight Rules</a> <br>
- <a href="https://www.codeschool.com/courses/try-git">Curso gratuito: Try Git</a> <br>
</p>
</section>
<section class="left-align">
<h1>THE END</h1>
<p>
- <a href="https://github.com/erickmendonca/git-workshop">Slides no GitHub</a> <br>
- <a href="https://training.github.com/kit/downloads/pt/github-git-cheat-sheet.pdf">Git cheat sheet</a> <br>
- <a href="https://git-scm.com/book/pt-br/v1">eBook gratuito Pro Git</a> <br>
</p>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>