From c9faed44803285cdc5f2132ae0a2254c278f5e16 Mon Sep 17 00:00:00 2001 From: Brandon Kelly Date: Sat, 25 Nov 2017 22:39:44 -0800 Subject: [PATCH] Fixed git-fetch suggestion (#15223) git-fetch only downloads/caches the remote refs; it doesn't actually update your local branch. --- docs/internals/git-workflow.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/internals/git-workflow.md b/docs/internals/git-workflow.md index bdb09e4..a1dd877 100644 --- a/docs/internals/git-workflow.md +++ b/docs/internals/git-workflow.md @@ -111,10 +111,10 @@ review your suggestion, and provide appropriate feedback along the way. > For small changes or documentation issues or straightforward fixes, you don't need to create an issue, a pull request is enough in this case. -### 2. Fetch the latest code from the main Yii branch +### 2. Pull the latest code from the main Yii branch ``` -git fetch upstream +git pull upstream ``` You should start at this point for every new contribution to make sure you are working on the latest code.