From 5ca0ee5aa664d27cfcc82149b38a5c89e4e92e63 Mon Sep 17 00:00:00 2001 From: comaraDOTcom <48843407+comaraDOTcom@users.noreply.github.com> Date: Thu, 5 Nov 2020 13:17:32 +0000 Subject: [PATCH] Update 2b-create-a-project-dbt-cli.md Just noticed that the git push should push to the main branch of a new repo now as references to a master branch are no longer used by Github. --- website/docs/tutorial/2b-create-a-project-dbt-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/tutorial/2b-create-a-project-dbt-cli.md b/website/docs/tutorial/2b-create-a-project-dbt-cli.md index 62c02160172..76b165c0f54 100644 --- a/website/docs/tutorial/2b-create-a-project-dbt-cli.md +++ b/website/docs/tutorial/2b-create-a-project-dbt-cli.md @@ -137,7 +137,7 @@ We need to commit our changes so that our repository has up-to-date code. $ git init $ git commit -m "Create a dbt project" $ git remote add origin https://github.com/USERNAME/dbt-tutorial.git -$ git push -u origin master +$ git push -u origin main ``` :::info