From 1182de337720ac5a93ce657048d091f6884972c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kuhn?= Date: Tue, 5 Mar 2024 10:16:22 +0100 Subject: [PATCH] docs: specify main branch for git init in quickstart guide --- docs/cli/getting-started/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cli/getting-started/index.md b/docs/cli/getting-started/index.md index 526860271..f0f0ebff8 100644 --- a/docs/cli/getting-started/index.md +++ b/docs/cli/getting-started/index.md @@ -60,7 +60,7 @@ inside a repository to work: one commit to compare the changes to and another co As a first step, create a new git repository and navigate into it: ```sh -git init terramate-quickstart +git init -b main terramate-quickstart cd terramate-quickstart ```