From 438d534b9df67b9b486da1a98310767e9cb0b410 Mon Sep 17 00:00:00 2001 From: Guangwen Feng Date: Sat, 16 Jul 2022 15:56:36 +0800 Subject: [PATCH] Fix incorrect format in open-a-pr.md Signed-off-by: Guangwen Feng --- content/en/docs/contribute/new-content/open-a-pr.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/en/docs/contribute/new-content/open-a-pr.md b/content/en/docs/contribute/new-content/open-a-pr.md index a9c9a1e16a..ddd1f2bb73 100644 --- a/content/en/docs/contribute/new-content/open-a-pr.md +++ b/content/en/docs/contribute/new-content/open-a-pr.md @@ -484,10 +484,10 @@ conflict. You must resolve all merge conflicts in your PR. 1. Fetch changes from `kubernetes/website`'s `upstream/main` and rebase your branch: - ```shell - git fetch upstream - git rebase upstream/main - ``` + ```shell + git fetch upstream + git rebase upstream/main + ``` 1. Inspect the results of the rebase: @@ -512,7 +512,7 @@ conflict. You must resolve all merge conflicts in your PR. 1. Continue the rebase: - `` + ```shell git rebase --continue ```