-
Notifications
You must be signed in to change notification settings - Fork 0
/
lesson_3_reflections.txt
27 lines (12 loc) · 1007 Bytes
/
lesson_3_reflections.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
## When would you want to use a remote repository rather than keeping all your work local?
Whenever you want to access the repository from somewhere other than the local machine or there is a collaborator
for one of my projects.
## Why might you want to always pull changes manually rather than having Git automatically stay up-to-date with your remote repository?
So if you make a mistake it doesn't interfere with the original code.
#What is the benefit of having a copy of the last known state of the remote stored locally?
It is good to look at progress
#How would you collaborate without using Git or GitHub? What would be easier, and what would be harder?
The main benefit of using git/github is that you can work remotely.
the major problem is that by doing so, there could be a lot of conflict
#When would you want to make changes in a separate branch rather than directly in master? What benefits does each approach have?
When you generally don't want to interfere with the progress