-
Notifications
You must be signed in to change notification settings - Fork 0
/
master.html
887 lines (842 loc) · 29.5 KB
/
master.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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Git ninja!</title>
<link rel="stylesheet" href="css/reveal.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/emojis.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700|Montserrat:400,700' rel='stylesheet' type='text/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> -->
</head>
<body>
<div class="reveal">
<img src="img/senai-logo-preto.svg" alt="SENAI" id="senai-logo" class="senai-logo">
<div class="slides">
<section>
<div>
<h1><img src="img/git.svg" alt="GIT" class="logo"></h1>
</div>
</section>
<section data-background="#FFF">
<div class="apresentacao">
<img class="foto" src="img/professor.jpg" alt="professor">
<h2 class="nome">Wendel Nascimento</h2>
<p>Front-end developer</p>
<ul class="social-media">
<li class="item">
<a href="https://github.com/wendelnascimento" target="_blank"><img src="img/github-logo-mini.svg" alt="Github" class="icon"></a>
</li>
<li class="item">
<a href="https://br.linkedin.com/in/wendel-nascimento-b2979291" target="_blank"><img src="img/linkedin-logo.svg" alt="Linkedin" class="icon"></a>
</li>
</ul>
</div>
</section>
<section>
<section>
<h2 class="big-title">O que é git?</h2>
<p class="medium-text fragment"><q>Um sistema de controle de versão</q></p>
</section>
<!-- <section>
<p class="left medium-text">Resumidamente...</p>
<h2 class="left big-title no-margin-top">Sistema de controle de versão</h2>
</section> -->
<section data-background="img/what.gif">
</section>
</section>
<section>
<section>
<ul class="list-style-none list-dash lista-features">
<!-- <li class="item medium-text">Sistema de controle de versão</li> -->
<li class="item medium-text">Concorrente do SVN</li>
<li class="item medium-text">Open-source</li>
<!-- <li class="item medium-text">Linus Torvalds</li> -->
</ul>
</section>
<!-- <section>
<h2 class="medium-text">Sistema de controle de versão (O mais usado do mundo)</h2>
</section> -->
<!-- <section>
<h2 class="medium-text">Veio como um concorrente para o finado SVN e acabou tomando seu posto de queridinho</h2>
</section>
<section>
<h2 class="medium-text">Open-source</h2>
</section> -->
<!-- <section>
<h2 class="medium-text">Criado por Linus Torvalds <i class="emoji emoji-penguin"></i></h2>
</section> -->
</section>
<section>
<section>
<h2 class="big-title">Por que eu devo usar git?</h2>
</section>
<section>
<ul class="list-style-none lista-features">
<li class="item medium-text">Performance <i class="emoji emoji-rocket"></i></li>
<li class="item medium-text fragment fade-in">Segurança <i class="emoji emoji-lock"></i></li>
<li class="item medium-text fragment fade-in">Flexibilidade <i class="emoji emoji-left-right-arrow"></i></li>
</ul>
</section>
<!-- <img src="img/meobrigue.gif" alt=""> -->
</section>
<section>
<section>
<h2 class="big-title">E o que eu ganho com isso?</h2>
<p class="fragment zoom-in"><strike>NADA</strike></p>
</section>
<section>
<h2 class="medium-text">
Fluxo de trabalho não centralizado
</h2>
<p class="medium-text">WTF professor?</p>
</section>
<section>
<h2 class="medium-text">
Trabalho local
</h2>
</section>
<section>
<h2 class="medium-text">
Escalabilidade
</h2>
</section>
<section>
<h2 class="medium-text">
Comunidade muito ampla, você nunca está sozinho
</h2>
</section>
<section>
<h2 class="medium-text">
Aplicável não apenas na área de desenvolvimento, pode ser usado para marketing, design, suporte ao consumidor e até mesmo para <strong>RH</strong>!
</h2>
</section>
<section data-background="img/kiddingme.gif">
<h2 class="big-title"><strong>RH?</strong></h2>
</section>
<section>
<h2 class="big-title">Sim!</h2>
</section>
</section>
<section data-background="#FFFFFF">
<section>
<img src="img/github-logo.svg" alt="Github">
</section>
<section>
<ul class="list-style-none list-dash lista-features">
<li class="item medium-text">Gratuito</li>
<li class="item medium-text fragment">Comunidade ampla</li>
<li class="item medium-text fragment">Integrações</li>
<li class="item medium-text fragment">Funcionalidades que facilitam a nossa vida</li>
</ul>
</section>
<section>
<p class="medium-text">Alternativamente temos...</p>
<ul class="list-style-none">
<li>
<img class="brand-logo" src="img/bitbucket-logo.svg" alt="Bitbucket">
</li>
<li>
<img class="brand-logo" src="img/gitlab-logo.svg" alt="GitLab">
</li>
</ul>
</section>
<section>
<h2 class="big-title">Mas hoje iremos utilizar o GitHub</h2>
<p class="medium-text">Então vamos criar nossa conta e começar a brincar de versionar</p>
</section>
<section data-background="img/github-home.jpg"></section>
<section>
<h2 class="medium-text highlight-red">Guarde bem o <strong>usuário e senha</strong> que vamos criar agora</h2>
</section>
<section data-background="img/github-conta.jpg"></section>
<section data-background="img/github-conta2.jpg"></section>
<section>
<h2 class="medium-text">Clique no link que foi enviado em seu email</h2>
</section>
</section>
<section>
<section>
<p class="medium-text">Professor, eu criei minha conta, mas como que eu uso isso?</p>
</section>
<section data-background="img/john-travolta.gif"></section>
<section>
<h2 class="medium-text no-margin-top">Criando um repositório e instalando o Git em sua máquina</h2>
</section>
<section>
<h2 class="medium-text">O que é um repositório e como crio um?</h2>
</section>
<section data-background="img/github-create.jpg"></section>
<section data-background="img/github-create-2.jpg"></section>
<section>
<h2 class="medium-text">Como instalo o Git?</h2>
</section>
<section>
<p class="medium-text">
Caso você use Windows
</p>
<p>
<a href="https://git-scm.com/download/win" target="_blank" class="big-title">git-scm.com</a>
</p>
</section>
<section>
<p class="medium-text">
Caso você use Linux
</p>
<p>
<a href="https://git-scm.com/download/linux" target="_blank" class="big-title">git-scm.com</a>
</p>
</section>
<section>
<p class="medium-text">
Caso você use Mac
</p>
<p>
<a href="https://git-scm.com/download/mac" target="_blank" class="big-title">git-scm.com</a>
</p>
</section>
</section>
<section data-transition="zoom">
<section>
<p class="medium-text left">Mas Wendel,</p>
<h2 class="big-title left no-margin-top">Como tudo isso funciona? É de comer?</h2>
</section>
<section>
<h2 class="medium-text">Primeiro, vamos abordar e trabalhar 3 coisas muito importantes no git</h2>
<p class="medium-text"><pre class="medium-text">Repositórios, Commits e Branches</pre></p>
</section>
<section>
<img src="img/fluxo-basico-git.svg" alt="Fluxo básico">
</section>
<!-- <section data-background="#FFF">
<h2 class="big-title">
Entendeu?
</h2>
</section>
<section>
<h2 class="medium-text">
Ok, vamos entender como isso funciona
</h2>
</section>
<section>
<h2 class="medium-text">
Basicamente, o que acontece na imagem é um merge
</h2>
<img src="img/merge.svg" alt="Merge">
</section>
<section>
<img src="img/fluxo-basico-git.svg" alt="Fluxo básico">
</section> -->
</section>
<section data-transition="zoom">
<h2 class="big-title">Hora da revisão</h2>
<img src="img/bored.gif" alt="Tédio">
</section>
<section>
<section>
<h2 class="big-title">Repositórios</h2>
</section>
<section>
<p class="medium-text">Pastas onde ficam os arquivos do seu projeto</p>
</section>
</section>
<section>
<section>
<h2 class="big-title">Commits</h2>
</section>
<section>
<p class="medium-text">
São como <q><i>fotos</i></q> do seu trabalho
</p>
</section>
</section>
<section>
<section>
<h2 class="big-title">Branches</h2>
<p class="medium-text">O que são? Por que usamos? O que acontece com elas? Hoje, no Git repórter</p>
</section>
<section>
<p class="left medium-text">Uma branch é basicamente</p>
<h2 class="left big-title no-margin-top">Uma cópia dos seus arquivos</h2>
</section>
</section>
<!-- <section>
<h2 class="big-title">E milhares de outras coisas</h2>
<p class="medium-text">Que veremos daqui a pouquinho, na prática</p>
</section> -->
<section data-background="img/horadoshow.jpg" data-transition="zoom">
<h2 class="big-title highlight-red">Hora do show</h2>
<p class="highlight-red">BIRLLLLLL</p>
</section>
<section>
<section>
<p class="medium-text"><pre class="medium-text">init, clone, config, add, <strong>commit</strong>, etc...</pre></p>
</section>
<!-- <section>
<ol>
<li class="medium-text">Crie uma pasta chamada <pre>Git</pre></li>
<li class="medium-text fragment">Clique com o botão direito dentro da pasta e clique em <pre>Git Bash Here</pre></li>
</ol>
</section> -->
<section>
<pre>
<code data-trim>
$ git init
</code>
</pre>
<p class="medium-text">
Inicializa um repositório(lembra dos repositórios?) no diretório atual
</p>
</section>
<section>
<img src="img/git-init.jpg" alt="Git init" class="stretch">
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git remote add origin <br>https://github.com/usuario/repositorio.git
</code>
</pre>
<p class="medium-text">
Adiciona um repositório remoto
</p>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git clone <br>https://github.com/usuario/repositorio.git
</code>
</pre>
<p class="medium-text">
O git clone faz um download de um repositório remoto, caso você não esteja começando um do zero, é ele que você deve usar
</p>
</section>
<!-- <section>
<h2 class="big-title">Aí é só ser feliz</h2>
</section> -->
</section>
<!-- <section>
</section> -->
<section data-background="#FFFFFF">
<section>
<h2 class="big-title">
Neste caso, usaremos o remote add origin
</h2>
</section>
<section>
<p class="medium-text">git remote add origin https://github.com/usuario/repositorio.git</p>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git pull
</code>
</pre>
<p class="medium-text">O git pull faz o download de todas as <strong>alterações</strong> que foram feitas no repositório</p>
</section>
<!-- <section>
<p class="medium-text">Após o pull, mudou alguma coisa na pasta de vocês?</p>
</section> -->
<!-- <section>
<p class="medium-text">Até agora tudo foi tranquilo...</p>
<h2 class="big-title">Até agora <i class="emoji emoji-smiling-face-halo"></i></h2>
</section> -->
</section>
<section>
<h2 class="big-title">O git precisa saber quem você é</h2>
<p class="medium-text">Mas isso é simples, 2 comandinhos</p>
</section>
<section>
<p class="medium-text">Nome</p>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git config --global <br>user.name "Seu nome"
</code>
</pre>
</section>
<section>
<p class="medium-text">E email</p>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git config --global <br>user.email email@email.com
</code>
</pre>
</section>
<section>
<section>
<ol>
<li class="medium-text">Abra seu editor de texto preferido(Só não vale bloco de notas)</li>
<li class="medium-text fragment">Abra a pasta do nosso projeto em seu editor</li>
<li class="medium-text fragment">Crie um novo arquivo com o nome <strong>index.html</strong> e um <strong>style.css</strong></li>
</ol>
</section>
<section>
<p class="medium-text">Dentro do <strong>index.html</strong>, digite</p>
<pre>
<code class="medium-code" data-trim>
<html></html>
</code>
</pre>
</section>
<section>
<p class="medium-text">Dentro do <strong>style.css</strong>, digite</p>
<pre>
<code class="medium-code" data-trim>
body: { background: #666; }
</code>
</pre>
</section>
<section>
<p class="medium-text">Salve e volte ao Git Bash, precisamos subir estes arquivo para o nosso repositório remoto</p>
</section>
<section>
<p class="medium-text">Primeiro, precisamos ver quais os arquivos que alteramos</p>
<pre>
<code class="medium-code" data-trim>
$ git status
</code>
</pre>
</section>
<section>
<p class="medium-text">Este comando deve te retornar algo parecido com isso:</p>
<img class="stretch" src="img/git-status.jpg" alt="Git status">
</section>
</section>
<section>
<section>
<h2 class="medium-text">Agora podemos adicionar os arquivos à nossa área de stage</h2>
</section>
<section>
<h2 class="big-title">Área de stage?</h2>
</section>
<section>
<h2 class="medium-text">A área de stage é basicamente o lugar onde você escolhe quais arquivos irão para o repositório remoto</h2>
</section>
</section>
<section>
<pre>
<code class="medium-code" data-trim>
$ git add index.html
</code>
</pre>
<p class="medium-text">
Com isso, estamos quaaaase prontos para subir nossos arquivos para o nosso repositório remoto. Precisamos apenas dar um commit
</p>
</section>
<section>
<!-- <section>
<h2 class="medium-text">Um commit é, basicamente, um "snapshot" do estado atual dos seus arquivos.</h2>
</section>
<section>
<h2 class="medium-text">Ele guarda informações como data, hora, arquivos modificados e estado dos arquivos modificados.</h2>
</section>
<section>
<h2 class="medium-text">Tudo isso pode ser usado para quando você precisar desfazer alguma coisa, por exemplo</h2>
</section> -->
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git commit -m <br>"Criação do index"
</code>
</pre>
<p class="medium-text">Agora estamos prontos para subir para o repositório remoto</p>
</section>
<section data-background="img/celebration.gif"></section>
<section>
<h2 class="medium-text">Lembre-se, tudo o que você fez <strong>até agora</strong>, foi local, ou seja, <span class="highlight-red">nada está no repositório remoto</span></h2>
</section>
<section>
<h2 class="big-title">
Até agora...
</h2>
</section>
</section>
<section>
<section>
<h2 class="medium-text">Putz, esquecemos de adicionar o style.css, e agora?</h2>
</section>
<section>
<h2 class="big-title">Fique em posição fetal e chore</h2>
</section>
<section>
<h2 class="medium-text">Mentira, eu não faria isso com vocês <i class="emoji emoji-red-heart"></i></h2>
<p class="big-title">Vamos dar um --amend</p>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git commit --amend
</code>
</pre>
<p class="medium-text">O --amend permite que você "edite" o commit anterior, isso inclui adicionar outros arquivos aquele commit</p>
</section>
<!-- <section>
<h2 class="medium-text">Agora, com --amend feito e tudo bonitinho, só falta uma coisa</h2>
</section> -->
<section>
<h2 class="big-title">E finalmente...</h2>
</section>
<section data-background="#3f3f3f">
<pre>
<code class="medium-code" data-trim data-noescape>
$ git push origin master
</code>
</pre>
<p class="medium-text inverted-text">Esse é o "comando do alívio"</p>
</section>
<section>
<h2 class="medium-text">Pronto. É só digitar seu <i>username</i>, senha e partir pro abraço <i class="emoji emoji-red-heart"></i></h2>
</section>
<section>
<h2 class="big-title">Digamos que você passou da parte 1</h2>
</section>
</section>
<section data-background="img/neo.gif">
<h2 class="big-title inverted-text">Round 2</h2>
</section>
<section>
<section>
<h2 class="big-title">.gitignore</h2>
</section>
<section>
<h2 class="medium-text">Um arquivo onde você pode indicar quais pastas/arquivos devem ser ignorados e jamais devem ir para o repositório remoto</h2>
</section>
<section>
<h2 class="medium-text left">Por que ignorar arquivos? Simples: Nós devemos subir apenas arquivos <strong>necessários para o desenvolvimento</strong></h2>
</section>
<section>
<h2 class="medium-text">Então vamos criar um arquivo com o nome <strong>.gitignore</strong></h2>
</section>
<section>
<h2 class="medium-text">Dentro deste arquivo, coloque o seguinte texto</h2>
<h2 class="big-title">*.jpg</h2>
</section>
<section>
<h2 class="medium-text">Salve o arquivo</h2>
</section>
<section>
<h2 class="medium-text">Coloque uma imagem qualquer(desde que seja <strong>.jpg</strong>) na pasta do seu repositório</h2>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git status
</code>
</pre>
</section>
<section>
<h2 class="medium-text">Apareceu algo <span class="highlight-red">na cor vermelha</span>?</h2>
</section>
</section>
<section>
<section>
<h2 class="big-title">Branches</h2>
</section>
<section>
<p class="medium-text left">Relembrando...</p>
<h2 class="big-title left no-margin-top">Cópias do seu trabalho</h2>
</section>
<section>
<h2 class="medium-text">Criar uma branch é bem simples</h2>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git branch nomedobranch
</code>
</pre>
<p class="medium-text">Isso irá automaticamente fazer uma cópia do seu estado atual na branch <i>nomedobranch</i></p>
</section>
<section>
<h2 class="medium-text">Mas isso ainda não quer dizer que você pode começar a mudar o código de forma descontrolada</h2>
</section>
<section>
<h2 class="medium-text">Isso fará com que você comece a trabalhar em sua branch</h2>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git checkout nomedobranch
</code>
</pre>
<p class="medium-text">O comando <i>checkout</i> muda o seu <strong>HEAD</strong></p>
</section>
<section>
<h2 class="medium-text"><strong>HEAD</strong> é um ponteiro que o Git usa para saber onde você está trabalhando</h2>
</section>
<section>
<h2 class="medium-text">Agora sim, pode brincar à vontade</h2>
</section>
<section>
<h2 class="medium-text">Terminei o que eu tinha pra fazer na minha branch, como eu faço ela se unir à principal?</h2>
</section>
</section>
<section>
<section>
<h2 class="big-title">Merge</h2>
</section>
<section>
<h2 class="medium-text">Lembra dessa imagem?</h2>
<img src="img/fluxo-basico-git.svg" alt="Fluxo básico">
</section>
<section>
<h2 class="medium-text">Para fazer um merge é bem simples</h2>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git checkout branchDestino
</code>
</pre>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git merge branchOrigem
</code>
</pre>
<p class="medium-text">Isso irá iniciar o processo de merge, que pode resultar em duas coisas</p>
</section>
<section>
<ul class="list-style-none list-dash lista-features">
<li class="item medium-text">Fast-forward</li>
<li class="item medium-text"><strike>Merda</strike> Conflito</li>
</ul>
</section>
</section>
<section data-background="#FFFFFF">
<section>
<h2 class="big-title">Resolvendo conflitos</h2>
</section>
<section>
<h2 class="medium-text">Antes de mais nada, calma. Primeiro volte ao editor de texto, seu arquivo deve estar parecido com isso</h2>
<img src="img/conflito.jpg" alt="Conflito">
</section>
<section>
<img src="img/conflito.jpg" alt="Conflito">
<p class="medium-text">Vamos entender melhor isso</p>
</section>
<section>
<p class="medium-text left">Professor, resolvi o conflito, e agora?</p>
<h2 class="big-title left no-margin-top">Criamos um novo <i>commit</i>, ué</h2>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git add index.html
</code>
</pre>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git commit -m <br>"Resolvendo conflitos"
</code>
</pre>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git push origin master
</code>
</pre>
</section>
<section data-background="img/awyeah.gif"></section>
</section>
<section>
<section>
<h2 class="big-title">Log</h2>
</section>
<section>
<h2 class="big-title">Um histórico de commits</h2>
</section>
<section>
<img class="stretch" src="img/git-log.jpg" alt="Git log">
</section>
</section>
<section>
<section>
<h2 class="big-title">Desfazendo coisas</h2>
</section>
<section>
<h2 class="medium-text">
Para voltar e desfazer alguma <strike>merda</strike> coisa errada, temos basicamente, três caminhos:
</h2>
<ul class="list-style-none list-dash lista-features">
<li class="item medium-text">Checkout</li>
<li class="item medium-text">Revert</li>
<li class="item medium-text">Reset</li>
</ul>
</section>
<section>
<h2 class="big-title">Checkout</h2>
</section>
<section>
<h2 class="medium-text">Acabamos de usar ele nas branches, lembra? Em tese, o que faremos agora é o mesmo, mudaremos nosso <strong>HEAD</strong></h2>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git checkout 9b669aa
</code>
</pre>
</section>
<section>
<h2 class="medium-text">Lembre-se, o checkout é um comando <i>read-only</i>, ou seja, você não vai voltar para a versão anterior e perder tudo o que tem</h2>
</section>
<section>
<h2 class="big-title">Revert</h2>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git revert 9b669aa
</code>
</pre>
</section>
<section>
<h2 class="medium-text">Sua segunda chance pra fazer direito</h2>
</section>
<section>
<img src="img/revert.svg" alt="Revert">
<p class="medium-text">Ele volta você ao commit especificado e permite com que você crie um novo commit a partir deste</p>
</section>
<section>
<h2 class="big-title highlight-red">Reset</h2>
</section>
<section>
<h2 class="medium-text">Muito cuidado com este comando. Ele é excelente para resolver problemas, mas também é ótimo para criar</h2>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git reset HEAD
</code>
</pre>
<p class="medium-text">Até aqui tudo ok, ele irá remover os arquivos que você mandou pra área de staging</p>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git reset --hard 9b669aa
</code>
</pre>
<p class="medium-text">Isso <span class="highlight-red">apaga tudo</span> o que você fez e volta seu repositório para o estado do commit 9b669aa</p>
</section>
<section>
<img class="fit-image" src="img/reset_revert.svg" alt="Reset">
</section>
</section>
<section>
<section>
<p class="medium-text left">Professor,</p>
<h2 class="big-title left no-margin-top">Qual vai ser o problema agora?</h2>
</section>
<section>
<h2 class="big-title">Não tem mais problema agora</h2>
</section>
<section>
<h2 class="big-title">Agora é hora</h2>
<p class="medium-text">Das técnicas ninja</p>
</section>
</section>
<section data-background="#FFFFFF">
<section>
<h2 class="big-title">Rebase</h2>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git pull --rebase origin branch
</code>
</pre>
<p class="medium-text">Reescreve o histórico de commits. Muito útil para facilitar a resolução de conflitos</p>
</section>
<section>
<h2 class="big-title">Reflog</h2>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git reflog
</code>
</pre>
<p class="medium-text">Parecido com o <i>git log</i>, porém não traz apenas o histórico de commits. Traz desde commits até checkouts, resets, rebases, etc</p>
</section>
<section>
<img src="img/git-reflog.jpg" alt="Reflog" class="stretch">
</section>
<section>
<h2 class="big-title">Bisect</h2>
<p class="medium-text">O cara que acha o bug pra você</p>
</section>
<section>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git bisect start
</code>
</pre>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git bisect bad HEAD
</code>
</pre>
<pre>
<code class="medium-code" data-trim data-noescape>
$ git bisect good 9b669aa
</code>
</pre>
</section>
<section>
<h2 class="medium-text">À partir de um commit bom <strong>good</strong> e um onde temos um bug <strong>bad</strong>, o git irá procurar em que momento e em qual arquivo deve existir um problema</h2>
</section>
</section>
<section>
<div>
<h1><img src="img/git.svg" alt="GIT" class="logo"></h1>
</div>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script src="js/presentation.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
history: true,
fragments: true,
slideNumber: 'c/t',
multiplex: {
// Example values. To generate your own, see the socket.io server instructions.
secret: '14660848797003405273', // null so the clients do not have control of the master presentation
id: 'cb569e32f5c3c1cf', // id, obtained from socket.io server
url: 'https://reveal-js-multiplex-ccjbegmaii.now.sh/' // Location of your socket.io server
},
// parallaxBackgroundImage: 'http://www.michaelnyffelerphotography.com/wp-content/uploads/2013/06/White-christmas-light-background.png', // e.g. "https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg"
//
// // Parallax background size
// parallaxBackgroundSize: '2444px 1636px', // CSS syntax, e.g. "2100px 900px" - currently only pixels are supported (don't use % or auto)
//
// // Number of pixels to move the parallax background per slide
// // - Calculated automatically unless specified
// // - Set to 0 to disable movement along an axis
// parallaxBackgroundHorizontal: 200,
// parallaxBackgroundVertical: 50,
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'plugin/markdown/marked.js' },
{ src: 'plugin/markdown/markdown.js' },
{ src: 'https://cdn.socket.io/socket.io-1.4.5.js', async: true },
{ src: 'plugin/multiplex/master.js', async: true },
{ src: 'plugin/notes/notes.js', async: true },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>