You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/version_control/version_control.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ Here we present a list of the terminology we may use when referring to version c
74
74
-**Cloning:** copying (downloading) an existing project on your laptop including the full history and link with the remote repository. Usually, it is done only during the first time of getting the remote repository.
75
75
-**Pushing:** uploading new commits (changes) to the remote repository.
76
76
-**Fetching:** checking for new changes on the remote repository with respect to your cloned repository.
77
-
-**Pulling:** retrieving new commits from the remote repository.
77
+
-**Pulling:** retrieving new commits from the remote repository. To prevent issues, always fetch and pull from the remote repository before starting a work session on your computer.
78
78
-**Conflict:** when changes made by multiple users to the same file are incompatible, you can get into a conflict. Helping users resolve those conflicts is one of the key advantages of VCS.
79
79
-**Branch:** development (time) line. The main development line is often called `main`.
80
80
-**Merge:** combining the commits of two branches, for example, changes on a development branch are merged into the `main` branch.
0 commit comments