Remote repository
Understand on how to play with remote repositories.
Configuration and setup Git config
You can refer more details in Create remote branches and push section.
Fetching and pulling
Fetch | Pull |
---|---|
Only changes are copied into your local Git repository and does not reflect the changes | It copies changes from a remote repository directly into your working directory and reflect the changes. |
Fetch just fetch | pull = fetch + merge |