DodoApp: Commit Helm charts to dodo branch

Change-Id: I98c528b37b2e3cb1765944792e4057e3ccbee4c9
diff --git a/core/installer/welcome/dodo_app.go b/core/installer/welcome/dodo_app.go
index 7ca9198..39d3a03 100644
--- a/core/installer/welcome/dodo_app.go
+++ b/core/installer/welcome/dodo_app.go
@@ -134,10 +134,20 @@
 		return err
 	}
 	lg := installer.GitRepositoryLocalChartGenerator{"app", namespace}
-	if _, err := m.Install(app, "app", "/.dodo/app", namespace, map[string]any{
-		"repoAddr":      repo.FullAddress(),
-		"sshPrivateKey": sshKey,
-	}, installer.WithConfig(env), installer.WithBranch("dodo"), installer.WithLocalChartGenerator(lg)); err != nil {
+	if _, err := m.Install(
+		app,
+		"app",
+		"/.dodo/app",
+		namespace,
+		map[string]any{
+			"repoAddr":      repo.FullAddress(),
+			"sshPrivateKey": sshKey,
+		},
+		installer.WithConfig(env),
+		installer.WithLocalChartGenerator(lg),
+		installer.WithBranch("dodo"),
+		installer.WithForce(),
+	); err != nil {
 		return err
 	}
 	return nil