-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1106 lines (976 loc) · 30.1 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
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
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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 Tutorium – WiSe 2016</title>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/moon.css">
<link rel="stylesheet" href="css/my.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- CSS for Git visualization -->
<link rel="stylesheet" href="css/gitgraph.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 );
var slidehooks = new Array();
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h1>Versionsverwaltung<br/> und Git</h1>
<strong>Softwaretechnik Tutorium – WiSe 2017/2018</strong><br/>
2017-10-20
<pre><code class="hljs bash">$ git config --global user.name "Natanael Arndt"
$ git config --global user.email "[email protected]"</code></pre>
<a href="https://white-gecko.github.io/GitTutorial">https://white-gecko.github.io/GitTutorial</a><br />
<span><a href="https://creativecommons.org/licenses/by-sa/2.0/">cc-by-sa</a></span>
<div class="tags">
<a href="https://github.com/white-gecko/GitTutorial/tree/wise2016">wise2016</a>
<a href="https://github.com/white-gecko/GitTutorial/tree/master">master</a>
</div>
</section>
<section data-markdown>
https://white-gecko.github.io/GitTutorial
</section>
<section data-markdown>
## Warum brauche ich eine Versionsverwaltung?
* Protokollierung der Softwareentwicklung
* Archivierung der Softwareversionen
* Wiederherstellung eines beliebigen Entwicklungstands
* Synchronisation des Entwicklungstands mit Kollegen
* Verschiedene Entwicklungstände zum „Ausprobieren“
https://white-gecko.github.io/GitTutorial
</section>
<section data-markdown>
## Systemvoraussetzungen
* Welches Betriebssystem habt ihr?
* Linux, Windows, MacOS, BSD, …
* Welche IDEs verwendet ihr?
* Atom, Eclipse, Sublime, …
* Habt ihr schon Git installiert?
* Wichtig direkt auf der Konsole: …
https://white-gecko.github.io/GitTutorial
</section>
<section data-markdown>
## Installation
[https://git-scm.com/book/de/v1/Los-geht’s-Git-installieren](https://git-scm.com/book/de/v1/Los-geht%E2%80%99s-Git-installieren)
```bash
you@linux:~$ apt-get install git # Debian GNU/Linux u.ä.
you@linux:~$ yum install git-core # Yellowdog, Fedora, openSUSE, …
you@macos:~$ brew install git
C:\> # Windows: http://msysgit.github.com/
```
https://white-gecko.github.io/GitTutorial
</section>
<section data-markdown>
* [Lektion 1](#lektion-1) (2017-10-13)
* [Wiederholung Lektion 1](#wdh-lektion-1) (2017-10-20)
* [Lektion 2](#lektion-2) (2017-10-20)
* [Lektion 3](#lektion-3)
https://white-gecko.github.io/GitTutorial
</section>
<section data-markdown id="lektion-1">
# Lektion 1
## Lernziele für heute
* Git Repository anlegen
* Dateien unter Versionskontrolle stellen
* Commits hinzufügen
* Änderungen übertragen
* GitLab Repository anlegen
Note:
- Den Studenten mitteilen, dass sie den Folien folgen sollen und die Beipiele nachvollziehen sollen
</section>
<section>
<section data-markdown>
## Geschichte: Lokaler Ansatz
* Versionen der Entwicklung liegen lokal vor
* Zugriff auf Versionen ist schnell
* Versionen können verglichen werden
* Kein Austausch mit Mitarbeitern
</section>
<section>
<h2>Geschichte: Zentraler Ansatz</h2>
<ul>
<li>Änderungen werden an einen zentralen Server übertragen</li>
<li>Austausch mit Mitarbeitern</li>
<li>Zugriff auf Versionen ist langsamer</li>
<li>Es muss ein Konsens hergestellt werden</li>
<li>Rudimentäre Unterstützung für Branches</li>
<li>Bsp. Concurrent Versions System (CVS), Subversion (SVN)</li>
</ul>
</section>
<section>
<h1>Geschichte: Verteilerter Ansatz</h1>
<ul>
<li>Es können mehrere Server existieren</li>
<li>Lokale Version beinhaltet die komplete Versionsgeschichte</li>
<li>Zugriff auf Versionen ist schnell</li>
<li>Es muss kein Konsens existieren</li>
<li>Beliebige Branches auf unterschiedlichen Systemen erlaubt</li>
<li>Bsp. Mercurial, Bazar, …, Git</li>
</ul>
</section>
<section>
<h1>Git</h1>
<ul>
<li>2005 von Linus Torvalds begonnen</li>
<li>… um BitKeeper für die Kernel Entwicklung zu ersetzen</li>
<li>Aktuell sehr weit verbreitet: GitHub, GitLab, Bitbucket, …</li>
<li>Version 2.14.2 (2017-09-22)</li>
<li><a href="https://www.git-scm.com/">https://www.git-scm.com/</a></li>
</ul>
</section>
</section>
<section>
<section>
<h1>git init</h1>
<ul>
<li>Initialisieren eines neuen leeren Repositories</li>
</ul>
<pre><code class="hljs bash">$ cd
$ mkdir git-tutorial
$ cd ~/git-tutorial
$ git init repo
Initialisierte leeres Git-Repository in
/home/natanael/git-tutorial/repo/.git/</code></pre>
</section>
<section>
<h1>.git</h1>
<ul>
<li>Was liegt in dem versteckten Ordner</li>
</ul>
<pre><code class="hljs bash">$ cd ~/git-tutorial/repo
$ ls
$ ls -a
. .. .git
$ cd .git
$ ls
branches config description HEAD hooks info objects refs</code></pre>
<a href="http://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html">what's inside your .git directory</a>
</section>
<section>
<h1>git status</h1>
<ul>
<li>Was ist in meinem Repository los?</li>
</ul>
<pre><code class="hljs bash">$ cd ~/git-tutorial/repo
$ git status
Auf Branch master
Initialer Commit
nichts zu committen (Erstellen/Kopieren Sie Dateien und benutzen
Sie "git add" zum Beobachten)</code></pre>
</section>
</section>
<section>
<section>
<h1>git add</h1>
<ul>
<li>Eine Datei unter Versionskontrolle stellen</li>
</ul>
<pre><code class="hljs bash">$ cd ~/git-tutorial/repo
$ echo "Hallo Git" > file.txt
$ git status
Auf Branch master
Initialer Commit
Unbeobachtete Dateien:
(benutzen Sie "git add <Datei>...", um die Änderungen zum
Commit vorzumerken)
file.txt
nichts zum Commit vorgemerkt, aber es gibt unbeobachtete Dateien
(benutzen Sie "git add" zum Beobachten)</code></pre>
</section>
<section>
<h1>git add …</h1>
<pre><code class="hljs bash">$ git add file.txt
$ git status
Auf Branch master
Initialer Commit
zum Commit vorgemerkte Änderungen:
(benutzen Sie "git rm --cached <Datei>..." zum Entfernen aus
derStaging-Area)
neue Datei: file.txt</code></pre>
</section>
</section>
<section>
<section>
<h1>git commit (Konfiguration)</h1>
<ul>
<li>Vor dem ersten Commit muss der Namen und die E-Mail des commiters konfiguriert werden</li>
</ul>
<pre><code class="hljs bash">$ git config --global user.name "Natanael Arndt"
$ git config --global user.email "[email protected]"</code></pre>
</section>
<section>
<h1>git commit</h1>
<pre><code class="hljs bash">$ git commit -m "Hallo Git"
[master (Basis-Commit) 6b7add4] Hallo Git
1 file changed, 1 insertion(+)
create mode 100644 file.txt
$ git status
Auf Branch master
nichts zu committen, Arbeitsverzeichnis unverändert</code></pre>
<img height="100em" src="img/git/commits-A.svg" />
</section>
<section>
<h1>git commit …</h1>
<pre><code class="hljs bash">$ echo "again" >> file.txt
$ git status
Auf Branch master
Änderungen, die nicht zum Commit vorgemerkt sind:
(benutzen Sie "git add <Datei>...", um die Änderungen zum
Commit vorzumerken)
(benutzen Sie "git checkout -- <Datei>...", um die Änderungen
im Arbeitsverzeichnis zu verwerfen)
geändert: file.txt
keine Änderungen zum Commit vorgemerkt (benutzen Sie "git add"
und/oder "git commit -a")
$ git add file.txt</code></pre>
</section>
<section>
<h1>git commit …</h1>
<pre><code class="hljs bash">$ git commit -m "again"
[master 0a777cb] again
1 file changed, 1 insertion(+)
$ git status
Auf Branch master
nichts zu committen, Arbeitsverzeichnis unverändert</code></pre>
<img height="100em" src="img/git/commits-B.svg" />
</section>
</section>
<section>
<section>
<h1>git log</h1>
<pre><code class="hljs bash">$ git log
commit 0a777cba46cd556a1246d033e0b11dedbfee6815
Author: Natanael Arndt <[email protected]>
Date: Fri Dec 16 01:55:56 2016 +0100
again
commit 6b7add4815e9c99d1f3f44c03cea58339b408f4d
Author: Natanael Arndt <[email protected]>
Date: Fri Dec 16 01:49:44 2016 +0100
Hallo Git</code></pre>
</section>
</section>
<section>
<section>
<h1>git push (und git remote)</h1>
<ul>
<li>Dient zur aktiven Übertragung eines Branches an ein entferntes Repository</li>
</ul>
<pre><code class="hljs bash">$ cd ~/git-tutorial/remote-repo
$ git init --bare remote-repo
Initialisierte leeres Git-Repository in
/home/natanael/git-tutorial/remote-repo
$ cd remote-repo
$ ls -a
. branches description hooks objects
.. config HEAD info refs
$ git log
fatal: bad default revision 'HEAD'</code></pre>
</section>
<section>
<h1>git push (und git remote)</h1>
<ul>
<li>Zur Übertragung muss das entfernte Repository als <em>remote</em> eingetragen werden</li>
</ul>
<pre><code class="hljs bash">$ cd ~/git-tutorial/repo
$ git remote add anderes ../remote-repo
$ git remote -v
anderes ../remote-repo (fetch)
anderes ../remote-repo (push)
$ git push --set-upstream anderes master
Zähle Objekte: 6, Fertig.
Delta compression using up to 4 threads.
Komprimiere Objekte: 100% (2/2), Fertig.
Schreibe Objekte: 100% (6/6), 444 bytes | 0 bytes/s, Fertig.
Total 6 (delta 0), reused 0 (delta 0)
To ../remote-repo
* [new branch] master -> master</code></pre>
<p style="font-size: .6em; line-height: 1em">
<em>--set-upstream</em> bzw. <em>-u</em> ist nur einmal notwendig, um den Branch dem remote Branch zuzuordnen.
Alternativ <em>git branch --set-upstream-to=anderes/master</em>.
</p>
</section>
<section>
<h1>git push (und git remote)</h1>
<pre><code class="hljs bash">$ cd ~/git-tutorial/remote-repo
$ git log
commit 0a777cba46cd556a1246d033e0b11dedbfee6815
Author: Natanael Arndt <[email protected]>
Date: Fri Dec 16 01:55:56 2016 +0100
again
commit 6b7add4815e9c99d1f3f44c03cea58339b408f4d
Author: Natanael Arndt <[email protected]>
Date: Fri Dec 16 01:49:44 2016 +0100
Hallo Git</code></pre>
</section>
</section>
<section data-markdown>
## Git Lab
![](img/gitlab-1.png)
</section>
<section data-markdown>
![](img/gitlab-2.png)
</section>
<section data-markdown>
![](img/gitlab-3.png)
</section>
<section id="wdh-lektion-1">
<section data-markdown>
## Wiederholung Lektion 1
* git init
* git status
* git commit
* git log
* git push
</section>
<section data-markdown>
# Git Konfiguration
* Vor dem ersten Commit muss der Namen und die E-Mail des commiters konfiguriert werden
```bash
$ git config --global user.name "Natanael Arndt"
$ git config --global user.email "[email protected]"
```
Überprüfen mit:
```bash
$ git config --global user.name
$ git config --global user.email
```
</section>
<section data-markdown>
# git init
* Initialisieren eines neuen leeren Repositories
```bash
$ cd
$ mkdir git-tutorial
$ cd ~/git-tutorial
$ git init repo
Initialisierte leeres Git-Repository in
/home/natanael/git-tutorial/repo/.git/
```
</section>
<section data-markdown>
# git status
* Was ist in meinem Repository los?
```bash
$ cd ~/git-tutorial/repo
$ git status
Auf Branch master
Initialer Commit
nichts zu committen (Erstellen/Kopieren Sie Dateien und benutzen
Sie "git add" zum Beobachten)
```
</section>
<section data-markdown>
# git add
* Eine Datei unter Versionskontrolle stellen
```
$ # PWD=~/git-tutorial/repo
$ echo "Hallo Git" > file.txt
$ git status
Auf Branch master
Initialer Commit
Unbeobachtete Dateien:
(benutzen Sie "git add <Datei>...", um die Änderungen zum
Commit vorzumerken)
file.txt
nichts zum Commit vorgemerkt, aber es gibt unbeobachtete Dateien
(benutzen Sie "git add" zum Beobachten)
```
</section>
<section data-markdown>
# git add …
```bash
$ # PWD=~/git-tutorial/repo
$ git add file.txt
$ git status
Auf Branch master
Initialer Commit
zum Commit vorgemerkte Änderungen:
(benutzen Sie "git rm --cached <Datei>..." zum Entfernen aus
derStaging-Area)
neue Datei: file.txt
```
</section>
<section data-markdown>
<script type="text/template">
# git commit
```bash
$ # PWD=~/git-tutorial/repo
$ git commit -m "Hallo Git"
[master (Basis-Commit) 6b7add4] Hallo Git
1 file changed, 1 insertion(+)
create mode 100644 file.txt
$ git status
Auf Branch master
nichts zu committen, Arbeitsverzeichnis unverändert
```
![](img/git/commits-A.svg)<!-- .element: style="height: 2em" -->
</script>
</section>
<section data-markdown>
<script type="text/template">
# git commit …
```bash
$ # PWD=~/git-tutorial/repo
$ echo "again" >> file.txt
$ git add file.txt
$ git commit -m "again"
[master 0a777cb] again
1 file changed, 1 insertion(+)
$ git status
Auf Branch master
nichts zu committen, Arbeitsverzeichnis unverändert
```
![](img/git/commits-B.svg)<!-- .element: style="height: 2em" -->
</script>
</section>
<section data-markdown>
# git log
```bash
$ # PWD=~/git-tutorial/repo
$ git log
commit 0a777cba46cd556a1246d033e0b11dedbfee6815
Author: Natanael Arndt <[email protected]>
Date: Fri Dec 16 01:55:56 2016 +0100
again
commit 6b7add4815e9c99d1f3f44c03cea58339b408f4d
Author: Natanael Arndt <[email protected]>
Date: Fri Dec 16 01:49:44 2016 +0100
Hallo Git
$ # aus git log kommt man mit 'q' raus
```
</section>
<section data-markdown>
![](img/gitlab-4.png)
</section>
<section>
<h1>git push (und git remote)</h1>
<ul>
<li>Zur Übertragung muss das entfernte Repository als <em>remote</em> eingetragen werden</li>
</ul>
<pre><code class="hljs bash"># PWD=~/git-tutorial/repo
$ git remote add gitlab [email protected]:arndt/git-tutorial.git
$ git remote -v
gitlab [email protected]:arndt/git-tutorial.git (fetch)
gitlab [email protected]:arndt/git-tutorial.git (push)
$ git push --set-upstream gitlab master
Zähle Objekte: 6, Fertig.
Delta compression using up to 4 threads.
Komprimiere Objekte: 100% (2/2), Fertig.
Schreibe Objekte: 100% (6/6), 442 bytes | 0 bytes/s, Fertig.
Total 6 (delta 0), reused 0 (delta 0)
To [email protected]:arndt/git-tutorial.git
* [new branch] master -> master</code></pre>
<p style="font-size: .6em; line-height: 1em">
<em>--set-upstream</em> bzw. <em>-u</em> ist nur einmal notwendig, um den Branch dem remote Branch zuzuordnen.
Alternativ <em>git branch --set-upstream-to=anderes/master</em>.
</p>
</section>
</section>
<section data-markdown id="lektion-2">
# Lektion 2
## Lernziele für heute
* Repositories und Änderungen Herunterladen
* Branching
* Merging
* Merge Konflikte
* Mit anderen Teammitgliedern zusammenarbeiten
Note:
- Den Studenten mitteilen, dass sie den Folien folgen sollen und die Beipiele nachvollziehen sollen
</section>
<section>
<section>
<h1>git clone</h1>
<ul>
<li>Dient zur Replikation eines entfernten Repositories</li>
</ul>
<pre><code class="hljs bash">$ cd ~/git-tutorial/
$ git clone ifigit@git.….de:arndt/git-tutorial.git local/
Klone nach 'local'...
remote: Zähle Objekte: 6, Fertig.
remote: Komprimiere Objekte: 100% (2/2), Fertig.
remote: Total 6 (delta 0), reused 0 (delta 0)
Empfange Objekte: 100% (6/6), Fertig.
Prüfe Konnektivität... Fertig.
$ cd local/
$ ls -a
. .. file.txt .git
$ git remote -v
origin [email protected]:arndt/git-tutorial.git (fetch)
origin [email protected]:arndt/git-tutorial.git (push)</code></pre>
</section>
<section data-markdown>
<script type="text/template">
# git clone und git log
```bash
$ # PWD=~/git-tutorial/local
$ git log
commit 0a777cba46cd556a1246d033e0b11dedbfee6815
Author: Natanael Arndt <[email protected]>
Date: Fri Dec 16 01:55:56 2016 +0100
again
commit 6b7add4815e9c99d1f3f44c03cea58339b408f4d
Author: Natanael Arndt <[email protected]>
Date: Fri Dec 16 01:49:44 2016 +0100
Hallo Git
$ # aus git log kommt man mit 'q' raus
```
![](img/git/clone.svg) <!-- .element: style="height: 3em" -->
</script>
</section>
<section>
<h1>git clone und ein neuer Beitrag</h1>
<pre><code class="hljs bash">$ # PWD=~/git-tutorial/local
$ echo "Beitrag" > file2.txt
$ git status
Auf Branch master
Ihr Branch ist auf dem selben Stand wie 'origin/master'.
Unbeobachtete Dateien:
(benutzen Sie "git add <Datei>...", um die Änderungen zum
Commit vorzumerken)
file2.txt
nichts zum Commit vorgemerkt, aber es gibt unbeobachtete Dateien
(benutzen Sie "git add" zum Beobachten)</code></pre>
<img height="150em" src="img/git/clone.svg" />
</section>
<section>
<h1>… git add …</h1>
<pre><code class="hljs bash">$ # PWD=~/git-tutorial/local
$ git add file2.txt
$ git status
Auf Branch master
Ihr Branch ist auf dem selben Stand wie 'origin/master'.
zum Commit vorgemerkte Änderungen:
(benutzen Sie "git reset HEAD <Datei>..." zum Entfernen aus
der Staging-Area)
neue Datei: file2.txt</code></pre>
<img height="150em" src="img/git/clone.svg" />
</section>
<section>
<h1>… git commit …</h1>
<pre><code class="hljs bash">$ # PWD=~/git-tutorial/local
$ git commit -m "Ein neuer Beitrag"
[master a7155b7] ein neuer Beitrag
1 file changed, 1 insertion(+)
create mode 100644 file2.txt
$ git status
Auf Branch master
Ihr Branch ist vor 'origin/master' um 1 Commit.
(benutzen Sie "git push", um lokale Commits zu publizieren)
nichts zu committen, Arbeitsverzeichnis unverändert</code></pre>
<img height="150em" src="img/git/clone-new-commit.svg" />
</section>
<section>
<h1>… git push</h1>
<pre><code class="hljs bash">$ # PWD=~/git-tutorial/local
$ git push
Zähle Objekte: 3, Fertig.
Delta compression using up to 4 threads.
Komprimiere Objekte: 100% (2/2), Fertig.
Schreibe Objekte: 100% (3/3), 280 bytes | 0 bytes/s, Fertig.
Total 3 (delta 0), reused 0 (delta 0)
To [email protected]:arndt/git-tutorial.git
0a777cb..a7155b7 master -> master
$ git status</code></pre>
<img height="150em" src="img/git/push.svg" />
</section>
</section>
<section>
<section data-transition="slide-in fade-out">
<h1>git fetch</h1>
<pre><code class="hljs bash">$ cd ~/git-tutorial/repo/
$ ls -a
. .. file.txt .git
$ git fetch gitlab
remote: Zähle Objekte: 3, Fertig.
remote: Komprimiere Objekte: 100% (2/2), Fertig.
remote: Total 3 (delta 0), reused 0 (delta 0)
Entpacke Objekte: 100% (3/3), Fertig.
Von [email protected]:arndt/git-tutorial.git
0a777cb..a7155b7 master -> gitlab/master
$ ls -a
. .. file.txt .git</code></pre>
<img height="120em" src="img/git/fetch.svg" />
</section>
<section data-transition="fade-in slide-out">
<h1>git fetch</h1>
<pre><code class="hljs bash">$ cd ~/git-tutorial/repo/
$ ls -a
. .. file.txt .git
$ git fetch gitlab
remote: Zähle Objekte: 3, Fertig.
remote: Komprimiere Objekte: 100% (2/2), Fertig.
remote: Total 3 (delta 0), reused 0 (delta 0)
Entpacke Objekte: 100% (3/3), Fertig.
Von [email protected]:arndt/git-tutorial.git
0a777cb..a7155b7 master -> gitlab/master
$ ls -a
. .. file.txt .git</code></pre>
<img height="120em" src="img/git/fetch2.svg" />
</section>
<section data-transition="slide-in fade-out">
<h1>git fetch und git merge</h1>
<pre><code class="hljs bash">$ # PWD=~/git-tutorial/repo
$ git status
Auf Branch master
Ihr Branch ist zu 'gitlab/master' um 1 Commit hinterher, und kann
vorgespult werden.
(benutzen Sie "git pull", um Ihren lokalen Branch zu
aktualisieren)
nichts zu committen, Arbeitsverzeichnis unverändert
$ git merge gitlab/master
Aktualisiere 0a777cb..a7155b7
Fast-forward
file2.txt | 1 +
1 file changed, 1 insertion(+)
create mode 100644 file2.txt</code></pre>
<img height="120em" src="img/git/fetch2.svg" />
</section>
<section data-transition="fade-in slide-out">
<h1>git fetch und git merge</h1>
<pre><code class="hljs bash">$ # PWD=~/git-tutorial/repo
$ git status
Auf Branch master
Ihr Branch ist zu 'gitlab/master' um 1 Commit hinterher, und kann
vorgespult werden.
(benutzen Sie "git pull", um Ihren lokalen Branch zu
aktualisieren)
nichts zu committen, Arbeitsverzeichnis unverändert
$ git merge gitlab/master
Aktualisiere 0a777cb..a7155b7
Fast-forward
file2.txt | 1 +
1 file changed, 1 insertion(+)
create mode 100644 file2.txt</code></pre>
<img height="120em" src="img/git/push.svg" />
</section>
<section>
<h1>git fetch und git merge</h1>
<pre><code class="hljs bash">$ # PWD=~/git-tutorial/repo
$ git status
Auf Branch master
Ihr Branch ist auf dem selben Stand wie 'gitlab/master'.
nichts zu committen, Arbeitsverzeichnis unverändert
$ ls -a
. .. file2.txt file.txt .git</code></pre>
</section>
<section>
<h1>git fetch + git merge<br/>= git pull</h1>
<pre><code class="hljs bash">$ # PWD=~/git-tutorial/repo
$ git pull
Aktualisiere a7155b7..910e6f9
Fast-forward
file2.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
$ ls -a
. .. file2.txt file.txt .git</code></pre>
</section>
</section>
<section>
<section>
<h1>branch</h1>
<ul>
<li>Mit git ist eine Verzweigung der Entwicklung einfach möglich</li>
</ul>
<pre><code class="hljs bash">$ cd ~/git-tutorial/local/
$ git branch feature
$ git branch
feature
* master
$ echo "beitrag auf master" >> file.txt
$ git add file.txt
$ git commit -m "beitrag auf master"
[master 3ff104e] beitrag auf master
1 file changed, 1 insertion(+)
</code></pre>
<img height="120em" src="img/git/branch-master.svg" />
</section>
<section>
<h1>branch</h1>
<pre><code class="hljs bash">$ # PWD=~/git-tutorial/local
$ git checkout feature
$ git branch
* feature
master
$ echo "beitrag auf feature" >> file2.txt
$ git add file2.txt
$ git commit -m "beitrag auf feature"
[master 3ff104e] beitrag auf master
1 file changed, 1 insertion(+)
</code></pre>
<img height="180em" src="img/git/branch-feature.svg" />
</section>
</section>
<section>
<section>
<h1>git merge</h1>
<pre style="width:50%; float: left"><code class="hljs bash">$ # PWD=~/git-tutorial/local
$ git checkout master
$ git branch
feature
* master
$ git merge feature # vim -> :wq
Aktualisiere 3ff104e..85de3a4
Fast-forward
file2.txt | 1 +
1 file changed, 1 insertion(+)
</code></pre>
<pre style="width:50%; float: left"><code class="hljs bash">$ tail -n 1 file*
==> file2.txt <==
beitrag auf feature
==> file.txt <==
beitrag auf master
</code></pre>
<img height="180em" src="img/git/branch-merge.svg" />
</section>
</section>
<section>
<section>
<h1>Konflikte</h1>
<ul>
<li>Merge Konflikte können auftreten, wenn zwei Bearbeiterinnnen oder Bearbeiter an der gleichen Stelle in der gleichen Datei Änderungen durchführen</li>
<li>Ein Push kann verweigert werden (<em>reject</em>), wenn eine lokale Änderung durch eine Entfernte Änderung überholt wurde (<em>divergiert</em>)</li>
</ul>
</section>
<section data-markdown>
# Merge Konflikt
```bash
$ # PWD=~/git-tutorial/local
$ echo "konflikt von master" >> file.txt
$ git add file.txt
$ git commit -m "konflikt von master"
$ git checkout feature
$ echo "konflikt von feature" >> file.txt
$ git add file.txt
$ git commit -m "konflikt von feature"
$ git checkout master
```
```bash
$ # in branch master $ # in branch feature
$ cat file.txt $ cat file.txt
Hallo Git Hallo Git
again again
beitrag auf master konflikt von feature
konflikt von master
```
</section>
<section data-markdown>
# Merge durchführen
```bash
$ git merge feature
automatischer Merge von file.txt
KONFLIKT (Inhalt): Merge-Konflikt in file.txt
Automatischer Merge fehlgeschlagen; beheben Sie die Konflikte und committen Sie dann das Ergebnis.
$ git status
Auf Branch master
…
(beheben Sie die Konflikte und führen Sie "git commit" aus)
Nicht zusammengeführte Pfade:
(benutzen Sie "git add/rm <Datei>...", um die Auflösung zu markieren)
von beiden geändert: file.txt
keine Änderungen zum Commit vorgemerkt (benutzen Sie "git add" und/oder "git commit -a")
```
</section>
<section>
<h1>Merge Konflikt</h1>
<pre><code class="hljs bash">$ cat file.txt
Hallo Git
again
<<<<<<< HEAD
beitrag auf master
konflikt von master
=======
konflikt von feature
>>>>>>> feature
$ vim file.txt
$ cat file.txt
Hallo Git
again
beitrag auf master
konflikt von master und feature behoben
$ git add file.txt
$ git commit</code></pre>
</section>
</section>
<section>
<section data-markdown>
# Push Konflikt
```bash
$ # PWD=~/git-tutorial/local
$ git push
$ cd ~/git-tutorial/repo
$ echo "konflikt von repo" >> file.txt
$ git add file.txt
$ git commit -m "konflikt von repo"
$ git push
```
</section>
<section>
<h1>Push Konflikt</h1>
<pre><code class="hljs bash">$ cd ~/git-tutorial/local/
$ git push
To /home/natanael/git-tutorial/remote-repo
! [rejected] master -> master (fetch first)
error: Fehler beim Versenden einiger Referenzen nach '/tmp/gituebung/remote-repo'
Hinweis: Aktualisierungen wurden zurückgewiesen, weil das Remote-Repository Commits enthält,
Hinweis: die lokal nicht vorhanden sind. Das wird üblicherweise durch einen "push" von
Hinweis: Commits auf dieselbe Referenz von einem anderen Repository aus verursacht.
Hinweis: Vielleicht müssen Sie die externen Änderungen zusammenzuführen (z.B. 'git pull ...')
Hinweis: bevor Sie erneut "push" ausführen.
Hinweis: Siehe auch die Sektion 'Note about fast-forwards' in 'git push --help'
Hinweis: für weitere Details.</code></pre>
<img height="180em" src="img/git/push-konflikt.svg" />
</section>
<!--//
<section>
<h1>Push Konflikt</h1>
<canvas id="gitpushKonf"></canvas>
<canvas id="gitpushKonfB"></canvas>
<script>
slidehooks.push(function () {
var gitGraph = new GitGraph({
template: "meteor",
elementId: "gitpushKonf",
mode: "compact",
orientation: "vertical",
reverseArrow: true
});
var gitRemoteGraph = new GitGraph({
template: "meteor",
elementId: "gitpushKonfB",
mode: "compact",
orientation: "vertical",
reverseArrow: true
});
var master = gitGraph.branch("master").commit("Hallo Git").commit("again").commit({message: "Ein neuer Beitrag", dotColor: "blue"});
var remote = gitRemoteGraph.branch("master").commit("Hallo Git").commit("again").commit({message: "Ein anderer Beitrag", dotColor: "red"});
});
</script>
</section>
<section>
<h1>Push Konflikt auflösen mit merge</h1>
<pre><code class="hljs bash">$ git merge origin/master</code></pre>
<canvas id="gitpushKonfM"></canvas>
<script>
slidehooks.push(function () {
var gitGraph = new GitGraph({
template: "meteor",
elementId: "gitpushKonfM",
mode: "compact",
orientation: "vertical",
reverseArrow: true
});
var master = gitGraph.branch("master").commit("Hallo Git").commit("again");
var masterRemote = master.branch("origin/master");
master.commit({message: "Ein neuer Beitrag", dotColor: "blue"});
masterRemote.commit({message: "Ein anderer Beitrag", dotColor: "red"});
master.merge(masterRemote);
});
</script>
</section>
//-->
</section>
<section>
<section>
<section data-markdown>
# Zusammenarbeiten mit GitLab
</section>
<section data-markdown>
![](img/gitlab-4.png)