Skip to content

Commit

Permalink
mr create: Set default target branch
Browse files Browse the repository at this point in the history
The default branch on gitlab projects can be changed from master to other
values.  The 'mr create' command defaults to 'master' and should use the
project's default branch instead.

Use the project's default branch instead of 'master'.

Signed-off-by: Prarit Bhargava <[email protected]>
  • Loading branch information
prarit committed Aug 20, 2020
1 parent 10a5e27 commit 6b4ee46
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cmd/mr_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var mrCreateCmd = &cobra.Command{
Use: "create [remote [branch]]",
Aliases: []string{"new"},
Short: "Open a merge request on GitLab",
Long: `Creates a merge request (MR created on origin master by default)`,
Long: `Creates a merge request (default: MR created on default branch of origin)`,
Args: cobra.MaximumNArgs(2),
Run: runMRCreate,
}
Expand Down Expand Up @@ -124,14 +124,15 @@ func runMRCreate(cmd *cobra.Command, args []string) {
if err != nil {
log.Fatal(err)
}
targetBranch := "master"

targetBranch := targetProject.DefaultBranch
if len(args) > 1 && targetBranch != args[1] {
targetBranch = args[1]
if _, err := lab.GetCommit(targetProject.ID, targetBranch); err != nil {
err = errors.Wrapf(
err,
"aborting MR, target branch %s not present on remote %s. did you forget to push?",
targetBranch, targetRemote)
"aborting MR, %s:%s is not a valid target. Did you forget to push %s to %s?",
targetRemote, branch, branch, targetRemote)
log.Fatal(err)
}
}
Expand Down

0 comments on commit 6b4ee46

Please sign in to comment.