20 Retrieving Remote Changes

You must keep your repository in sync with the changes from everyone else that is collaborating on it with you. You do this with the git fetch command. Fetching is closely related to git pull, and many people incorrectly use the two commands interchangeably.

Fetching changes from a remote repository retrieves—literally fetches—the changes from that remote repository. This stores them in their remote branches on your local repository. You can use this to see what changes are on the remote repository without affecting your local repository.

Git fetches the changes from the origin remote repository if you don’t specify a remote. You can fetch from another repository by providing the name of that remote ...

Get Pragmatic Guide to Git now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.