Practice this fail.
Look before you merge.
Git · Restart as often as you like
Read the error, choose a command, and learn
why it works. Nothing runs on your machine.
origin is configured. Download its latest objects and remote-tracking branch updates, but do not integrate anything into the current branch.
Look before you merge.
$ git status --short
(clean working tree)
The remote has new commits.
How do you update remote-tracking information without merging?
Fixed. By hand.
git fetch originFetch downloads objects and updates configured remote-tracking references. Unlike pull, it does not then merge or rebase the fetched history into your checked-out branch.
Practice does not affect your daily score or streak.