From 0f480e1c1fecf5a7975bae29dd74548856e086eb Mon Sep 17 00:00:00 2001 From: Thang Tran Date: Mon, 11 Feb 2019 22:14:19 +0100 Subject: [PATCH] doc: renamed remote's name To keep consistency through-out the guide. Fixes: https://github.com/nodejs/node/issues/26045 --- doc/guides/contributing/pull-requests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/contributing/pull-requests.md b/doc/guides/contributing/pull-requests.md index 0e324211ee9232..f90e74acbf7e03 100644 --- a/doc/guides/contributing/pull-requests.md +++ b/doc/guides/contributing/pull-requests.md @@ -301,7 +301,7 @@ changes that have landed in `master` by using `git rebase`: ```text $ git fetch --all -$ git rebase origin/master +$ git rebase upstream/master $ git push --force-with-lease origin my-branch ```