From 7bab083bcd5ae4a0f33ede472e0eb37c480c6d8c Mon Sep 17 00:00:00 2001 From: nikhilkalburgi <70331875+nikhilkalburgi@users.noreply.github.com> Date: Mon, 1 Jan 2024 12:45:29 +0530 Subject: [PATCH] docs: update git-workflow.md (#1004) --- git-workflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-workflow.md b/git-workflow.md index ad4856788..86da5f0e0 100644 --- a/git-workflow.md +++ b/git-workflow.md @@ -44,7 +44,7 @@ The result is as follows: ``` git remote add upstream https://github.com/asyncapi/asyncapi.git ``` -3. Run the `git fetch upstream master` command to fetch all branches. +3. Run the `git fetch upstream master` command to fetch all the changes from upstream/master branch. 4. Set up the local `master` branch to track the remote `master` branch from the upstream repository: ``` git branch -u upstream/master master