Skip to content

Commit 5de4793

Browse files
authored
Merge pull request #113 from planetscale/nickvanw/do-not-autocreate
require flag to autocreate on branch switch
2 parents 112e514 + 784edec commit 5de4793

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

internal/cmd/branch/switch.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ import (
1515

1616
func SwitchCmd(cfg *config.Config) *cobra.Command {
1717
var parentBranch string
18+
var autoCreate bool
19+
1820
cmd := &cobra.Command{
1921
Use: "switch <branch>",
2022
Short: "Switches the current project to use the specified branch",
@@ -31,7 +33,7 @@ func SwitchCmd(cfg *config.Config) *cobra.Command {
3133
return err
3234
}
3335

34-
fmt.Printf("Finding or creating branch %s on database %s\n", cmdutil.BoldBlue(branch), cmdutil.BoldBlue(cfg.Database))
36+
fmt.Printf("Finding branch %s on database %s\n", cmdutil.BoldBlue(branch), cmdutil.BoldBlue(cfg.Database))
3537

3638
_, err = client.DatabaseBranches.Get(ctx, &planetscale.GetDatabaseBranchRequest{
3739
Organization: cfg.Organization,
@@ -43,6 +45,10 @@ func SwitchCmd(cfg *config.Config) *cobra.Command {
4345
}
4446

4547
if errorIsNotFound(err) {
48+
if !autoCreate {
49+
return errors.New("branch does not exist in specified database. Use --create to automatically create during switch")
50+
}
51+
4652
end := cmdutil.PrintProgress(fmt.Sprintf("Branch does not exist, creating %s branch from %s...", cmdutil.BoldBlue(branch), cmdutil.BoldBlue(parentBranch)))
4753
defer end()
4854

@@ -81,6 +87,7 @@ func SwitchCmd(cfg *config.Config) *cobra.Command {
8187
cmd.PersistentFlags().StringVar(&cfg.Organization, "org", cfg.Organization, "The organization for the current user")
8288
cmd.PersistentFlags().StringVar(&cfg.Database, "database", cfg.Database, "The database this project is using")
8389
cmd.Flags().StringVar(&parentBranch, "parent-branch", "main", "parent branch to inherit from if a new branch is being created")
90+
cmd.Flags().BoolVar(&autoCreate, "create", false, "if enabled, will automatically create the branch if it does not exist")
8491

8592
cmd.MarkPersistentFlagRequired("database") // nolint:errcheck
8693
return cmd

0 commit comments

Comments
 (0)