Skip to content

Commit 306527a

Browse files
authored
Merge pull request #73 from ImperialCollegeLondon/update_remotes_key_points
Update remotes key points
2 parents fa6362f + 7534f76 commit 306527a

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

_episodes/l2-02-remote_repositories.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff 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."
1414
keypoints:
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

0 commit comments

Comments
 (0)