-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlesson_3_reflection.txt
37 lines (26 loc) · 1.51 KB
/
lesson_3_reflection.txt
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
When would you want to use a remote repository rather than keeping all your work
local?
* Immer wenn ich auf unterschiedlichen Maschinen oder mit mehreren Personen gemeinsam
an einem Projekt arbeite.
Why might you want to always pull changes manually rather than having Git
automatically stay up-to-date with your remote repository?
* Remote und Lokal zusammenzulegen kann auch zu Konflikten führen
welche manuell behoben werden müssen. Ich will deshalb den Zeitpunkt selbst fetlegen,
wann Änderungen von Remote in mein lokales Repository übernommen werden.
Describe the differences between forks, clones, and branches. When would you
use one instead of another?
Branching: eine Branch wird im lokalen Repository erstellt.
Cloning: Kopie eines kompletten Repositories, entweder Remote > Lokal / Lokal > Lokal
Mitarbeit an einem bestehenden Projekt auf GitHub
Forking: Kopie eines kompletten Repositories auf GitHub. Dadurch wir im eigenen Account
eine Kopie eines anderen Repositories erstellt. Im Original sind alle Forks ersichtlich.
Kopie eines Projektes auf GitHub und selbständiges weiterarbeiten.
What is the benefit of having a copy of the last known state of the remote
stored locally?
Fill in your answer here
How would you collaborate without using Git or GitHub? What would be easier,
and what would be harder?
Fill in your answer here
When would you want to make changes in a separate branch rather than directly in
master? What benefits does each approach have?
Fill in your answer here