From fa64481a274d3f388a9b7ed11ee37a3dde5deaa5 Mon Sep 17 00:00:00 2001 From: Jan Kaifer Date: Mon, 19 Dec 2022 18:19:31 +0100 Subject: [PATCH 1/2] Update developing.md --- contributing/core/developing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contributing/core/developing.md b/contributing/core/developing.md index 3614fe22e96b9b4..64637f7a1ebf1e2 100644 --- a/contributing/core/developing.md +++ b/contributing/core/developing.md @@ -7,9 +7,9 @@ To develop locally: 1. Install the [GitHub CLI](https://github.com/cli/cli#installation). -1. Clone the Next.js repository: +1. Clone the Next.js repository (downloads just last commit for faster clone): ``` - gh repo clone vercel/next.js + gh repo clone vercel/next.js --depth=1 --branch canary --single-branch ``` 1. Create a new branch: ``` From cc54d8d7b22569465ca4e57fe4404378dfa2d5e0 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Mon, 19 Dec 2022 10:49:10 -0800 Subject: [PATCH 2/2] fix wording --- contributing/core/developing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing/core/developing.md b/contributing/core/developing.md index 64637f7a1ebf1e2..3fd6fa995bc91dd 100644 --- a/contributing/core/developing.md +++ b/contributing/core/developing.md @@ -7,7 +7,7 @@ To develop locally: 1. Install the [GitHub CLI](https://github.com/cli/cli#installation). -1. Clone the Next.js repository (downloads just last commit for faster clone): +1. Clone the Next.js repository (downloads only the last commit for faster clone): ``` gh repo clone vercel/next.js --depth=1 --branch canary --single-branch ```