Categories: Varia

Change the Default Git Branch for a dbt Cloud Project

In dbt, you can link your project to a github account, which is obviously the right thing to do. By default, the project uses the main branch. But what if you have two dbt projects; one for dev and one for prd? And in the dev project, you want to change the default branch to another branch, for example main-dev? (in this case, deploying to production would mean doing a pull request where you merge the main-dev branch into the main branch)

It took me some time to figure out how to do this, since this isn’t that straight forward in the dbt cloud interface (well, it is when you know where to look). Hence this blog post.

You might think you can change it in the account settings under project.

When you go to your project, you can view and edit repository settings.

But there’s no setting for the default branch. To change this, we need to go to the environments section of the project, which can be found under deploy.

Choose the Development environment.

Go to its settings.

And there we can find the configuration for the default branch. Hit the edit button at the top.

Now we can specify which branch we want to use for the project:

Hit Save, and go back to the develop section of dbt cloud. You will be asked to refresh the IDE interface. And that’s it. The project will now use your custom branch. This means that branch is read-only and it can only be updated through pull requests.


------------------------------------------------
Do you like this blog post? You can thank me by buying me a beer 🙂
Koen Verbeeck

Koen Verbeeck is a Microsoft Business Intelligence consultant at AE, helping clients to get insight in their data. Koen has a comprehensive knowledge of the SQL Server BI stack, with a particular love for Integration Services. He's also a speaker at various conferences.

Recent Posts

Techorama 2025 – Slides

You can find the slides for my session Building the €100 data warehouse with the…

2 weeks ago

Redgate SQL Prompt in SSMS 21

Disclaimer: this post is not sponsored by Redgate :) For those who've missed it, the…

2 weeks ago

Execute Fabric Data Pipeline from Azure Data Factory

In the blog post Call a Fabric REST API from Azure Data Factory I explained…

1 month ago

Azure Data Factory Pipeline Debugging Fails with BadRequest

I recently had a new pipeline fail. It was actually a copy of an old…

2 months ago

Call a Fabric REST API from Azure Data Factory

Suppose you want to call a certain Microsoft Fabric REST API endpoint from Azure Data…

2 months ago

Cool Stuff in Snowflake – Part 14: Asynchronous Execution of SQL Statements

I’m doing a little series on some of the nice features/capabilities in Snowflake (the cloud data warehouse).…

3 months ago