Keep your file up to date by pulling in changes from collaborators.
Pulling from a Remote
If you're working on something with someone else you need to stay up to date with the latest changes. So you'll want to pull in any changes that may have been pushed to the central GitHub repository.

What has Reporobot been up to?
See if Reporobot has made any changes to your branch by pulling in any changes from the remote named 'origin' on GitHub:
git pull <REMOTENAME> <BRANCHNAME>
If nothing's changed, it will tell you 'Already up-to-date'. If there are changes, Git will merge those changes into your local version.
Did Reporobot make changes? Git tells you where changes were made. You can open that file and see Reporobot's updates. Surprise, Reporobot is an artist!
- Check Git status
- Pull in changes from a remote branch
- See changes to the remote before you pull in
git status
git pull <REMOTENAME> <REMOTEBRANCH>
git fetch --dry-run