File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,14 @@ objectives:
1212- " Use the push command to send changes on the local branch to the remote one."
1313- " Use the pull command to update your local branch with the remote one."
1414keypoints :
15- - " origin is typically the name of the remote repository used by GitHub."
16- - " Local and remote repositories are not identical, in general."
17- - " Local and remote repositories are not synchronized automatically."
15+ - " origin is the default name used by Git to refer to a remote repository."
16+ - " Local and remote repositories are not identical, in general, as synchronisation
17+ must be performed manually."
18+ - " `git fetch`, followed by `git status`, shows whether there are any changes to
19+ synchronise."
20+ - " `git pull` brings changes in the upstream branch to the local branch."
21+ - " `git push` synchronises any committed changes in your local branch with the
22+ upstream branch."
1823- " push and pull commands only affect the branch currently checked out."
1924---
2025
You can’t perform that action at this time.
0 commit comments