From f7cba1b9de5efec695771868931ac48c0bd85a2f Mon Sep 17 00:00:00 2001 From: skepticspriggan <91023755+skepticspriggan@users.noreply.github.com> Date: Tue, 2 Apr 2024 23:40:39 +0200 Subject: [PATCH] Fix required branch not specified (#20143) --- docs/internals/git-workflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/internals/git-workflow.md b/docs/internals/git-workflow.md index 11e8a499a6c..b3ede5011a0 100644 --- a/docs/internals/git-workflow.md +++ b/docs/internals/git-workflow.md @@ -111,7 +111,7 @@ review your suggestion, and provide appropriate feedback along the way. ### 2. Pull the latest code from the main Yii branch ``` -git pull upstream +git pull upstream master ``` You should start at this point for every new contribution to make sure you are working on the latest code.