Your teammate updated the recipe while you were away. git pull downloads their changes and merges them into your kitchen.
While you were sleeping, Chef Bob pushed 3 new commits to the shared library.
He fixed the oven temperature, added a glaze recipe, and updated the plating guide.
Your local copy is behind.
You need to git pull
to get his changes — fetch + merge in one step.
All of Chef Bob's changes are now in your local copy.
You're seeing the same recipe everyone else sees.
git pull =
git fetch +
git merge
Always pull before you push. It's like reading the latest recipe before adding your own changes — so you don't overwrite someone else's work.