From a7e7f9c74dd645a09f20139f889faa7a1ba71d12 Mon Sep 17 00:00:00 2001 From: Jan Kaifer Date: Tue, 20 Dec 2022 10:46:44 +0100 Subject: [PATCH] Increase recommended git clone depth --- 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 3fd6fa995bc91dd..014a9c08d57512b 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 (downloads only the last commit for faster clone): +1. Clone the Next.js repository (download only recent commits for faster clone): ``` - gh repo clone vercel/next.js --depth=1 --branch canary --single-branch + gh repo clone vercel/next.js --depth=3000 --branch canary --single-branch ``` 1. Create a new branch: ```